Skip to content

Commit

Permalink
PEP8: single-line docstrings.
Browse files Browse the repository at this point in the history
Incorporate feedback from @dhermes.
  • Loading branch information
tseaver committed Oct 13, 2014
1 parent 2b51393 commit 60245f5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 12 deletions.
3 changes: 1 addition & 2 deletions gcloud/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
"""GCloud API access in idiomatic Python.
"""
"""GCloud API access in idiomatic Python."""
__version__ = '0.02.2'
3 changes: 1 addition & 2 deletions gcloud/datastore/connection.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Connections to gcloud datastore API servers.
"""
"""Connections to gcloud datastore API servers."""
from gcloud import connection
from gcloud.datastore import datastore_v1_pb2 as datastore_pb
from gcloud.datastore import _helpers
Expand Down
3 changes: 1 addition & 2 deletions gcloud/datastore/dataset.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Create / interact with gcloud datastore datasets.
"""
"""Create / interact with gcloud datastore datasets."""

class Dataset(object):
"""A dataset in the Cloud Datastore.
Expand Down
3 changes: 1 addition & 2 deletions gcloud/datastore/key.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Create / interact with gcloud datastore keys.
"""
"""Create / interact with gcloud datastore keys."""

import copy
from itertools import izip
Expand Down
3 changes: 1 addition & 2 deletions gcloud/datastore/query.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Create / interact with gcloud datastore queries.
"""
"""Create / interact with gcloud datastore queries."""

import base64
import copy
Expand Down
3 changes: 1 addition & 2 deletions gcloud/datastore/transaction.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Create / interact with gcloud datastore transactions.
"""
"""Create / interact with gcloud datastore transactions."""

from gcloud.datastore import datastore_v1_pb2 as datastore_pb
from gcloud.datastore.key import Key
Expand Down

0 comments on commit 60245f5

Please sign in to comment.