Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gcloud/_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

from google.protobuf import timestamp_pb2
import six
from six.moves.http_client import HTTPConnection # pylint: disable=F0401
from six.moves.http_client import HTTPConnection

from gcloud.environment_vars import PROJECT

Expand Down
2 changes: 1 addition & 1 deletion gcloud/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import json
from pkg_resources import get_distribution
import six
from six.moves.urllib.parse import urlencode # pylint: disable=F0401
from six.moves.urllib.parse import urlencode

import httplib2

Expand Down
2 changes: 1 addition & 1 deletion gcloud/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import base64
import datetime
import six
from six.moves.urllib.parse import urlencode # pylint: disable=F0401
from six.moves.urllib.parse import urlencode

from oauth2client import client

Expand Down
2 changes: 1 addition & 1 deletion gcloud/storage/blob.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import time

import six
from six.moves.urllib.parse import quote # pylint: disable=F0401
from six.moves.urllib.parse import quote

from gcloud._helpers import _rfc3339_to_datetime
from gcloud.credentials import generate_signed_url
Expand Down
4 changes: 2 additions & 2 deletions gcloud/streaming/http_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

import httplib2
import six
from six.moves import http_client # pylint: disable=F0401
from six.moves.urllib import parse # pylint: disable=F0401
from six.moves import http_client
from six.moves.urllib import parse

from gcloud.streaming.exceptions import BadStatusCodeError
from gcloud.streaming.exceptions import RequestError
Expand Down
3 changes: 3 additions & 0 deletions scripts/pylintrc_default
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,9 @@ good-names = i, j, k, ex, Run, _,
# (useful for modules/projects where namespaces are manipulated during runtime
# and thus existing member attributes cannot be deduced by static analysis
# DEFAULT: ignored-modules=
# RATIONALE: six aliases stuff for compatibility.
# google.protobuf fixes up namespace package "late".
ignored-modules = six, google.protobuf

# List of classes names for which member attributes should not be checked
# (useful for classes with attributes dynamically set).
Expand Down