Skip to content

Commit

Permalink
Appease pylint.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Nov 8, 2014
1 parent 13b4e94 commit c9ef1f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gcloud/storage/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from OpenSSL import crypto
import pytz

from gcloud import connection
from gcloud.connection import Connection as _Base
from gcloud.storage import exceptions
from gcloud.storage.bucket import Bucket
from gcloud.storage.iterator import Iterator
Expand All @@ -26,7 +26,7 @@ def _utcnow(): # pragma: NO COVER testing replaces
return datetime.datetime.utcnow()


class Connection(connection.Connection):
class Connection(_Base):
"""A connection to Google Cloud Storage via the JSON REST API.
This class should understand only the basic types (and protobufs)
Expand Down

0 comments on commit c9ef1f9

Please sign in to comment.