Skip to content

Commit

Permalink
cosmetic changes to address googleapis#4343
Browse files Browse the repository at this point in the history
  • Loading branch information
chemelnucfin committed Nov 9, 2017
1 parent d09d907 commit 7ff8510
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
9 changes: 4 additions & 5 deletions datastore/google/cloud/datastore/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,10 @@ class Client(ClientWithProject):
>>> client = datastore.Client()
:type project: str
:param project: (optional) The project to pass to proxied API methods.
:param project: (Optional) The project to pass to proxied API methods.
:type namespace: str
:param namespace: (optional) namespace to pass to proxied API methods.
:param namespace: (Optional) namespace to pass to proxied API methods.
:type credentials: :class:`~google.auth.credentials.Credentials`
:param credentials: (Optional) The OAuth2 Credentials to use for this
Expand Down Expand Up @@ -346,9 +346,8 @@ def get_multi(self, keys, missing=None, deferred=None,
:type eventual: bool
:param eventual: (Optional) Defaults to strongly consistent (False).
Setting True will use eventual consistency,
but cannot be used inside a transaction or
will raise ValueError.
Setting True will use eventual consistency, but cannot
be used inside a transaction or will raise ValueError.
:rtype: list of :class:`google.cloud.datastore.entity.Entity`
:returns: The requested entities.
Expand Down
6 changes: 3 additions & 3 deletions datastore/google/cloud/datastore/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@

import datetime
import itertools

from google.protobuf import struct_pb2
from google.type import latlng_pb2
import six

from google.cloud._helpers import _datetime_to_pb_timestamp
Expand All @@ -28,9 +31,6 @@
from google.cloud.datastore.entity import Entity
from google.cloud.datastore.key import Key

from google.protobuf import struct_pb2
from google.type import latlng_pb2


def _get_meaning(value_pb, is_list=False):
"""Get the meaning from a protobuf value.
Expand Down

0 comments on commit 7ff8510

Please sign in to comment.