Skip to content

Commit 60245f5

Browse files
committed
PEP8: single-line docstrings.
Incorporate feedback from @dhermes.
1 parent 2b51393 commit 60245f5

6 files changed

Lines changed: 6 additions & 12 deletions

File tree

gcloud/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
"""GCloud API access in idiomatic Python.
2-
"""
1+
"""GCloud API access in idiomatic Python."""
32
__version__ = '0.02.2'

gcloud/datastore/connection.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""Connections to gcloud datastore API servers.
2-
"""
1+
"""Connections to gcloud datastore API servers."""
32
from gcloud import connection
43
from gcloud.datastore import datastore_v1_pb2 as datastore_pb
54
from gcloud.datastore import _helpers

gcloud/datastore/dataset.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""Create / interact with gcloud datastore datasets.
2-
"""
1+
"""Create / interact with gcloud datastore datasets."""
32

43
class Dataset(object):
54
"""A dataset in the Cloud Datastore.

gcloud/datastore/key.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""Create / interact with gcloud datastore keys.
2-
"""
1+
"""Create / interact with gcloud datastore keys."""
32

43
import copy
54
from itertools import izip

gcloud/datastore/query.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""Create / interact with gcloud datastore queries.
2-
"""
1+
"""Create / interact with gcloud datastore queries."""
32

43
import base64
54
import copy

gcloud/datastore/transaction.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""Create / interact with gcloud datastore transactions.
2-
"""
1+
"""Create / interact with gcloud datastore transactions."""
32

43
from gcloud.datastore import datastore_v1_pb2 as datastore_pb
54
from gcloud.datastore.key import Key

0 commit comments

Comments
 (0)