Skip to content

Commit 2ada8a8

Browse files
committed
Wrap lines at 79 charcters.
Fixes PEP8 E501 errors in 'tox -e lint'.
1 parent 7101f64 commit 2ada8a8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

gcloud/datastore/connection.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,8 @@ def delete_entities(self, dataset_id, key_pbs):
398398
399399
:rtype: boolean (if in a transaction) or else
400400
:class:`gcloud.datastore.datastore_v1_pb2.MutationResult`.
401-
:returns: True (if in a transaction) or else a mutation result protobuf.
401+
:returns: True (if in a transaction) or else a mutation result
402+
protobuf.
402403
"""
403404
mutation = self.mutation()
404405

@@ -428,6 +429,7 @@ def delete_entity(self, dataset_id, key_pb):
428429
429430
:rtype: boolean (if in a transaction) or else
430431
:class:`gcloud.datastore.datastore_v1_pb2.MutationResult`.
431-
:returns: True (if in a transaction) or else a mutation result protobuf.
432+
:returns: True (if in a transaction) or else a mutation result
433+
protobuf.
432434
"""
433435
return self.delete_entities(dataset_id, [key_pb])

0 commit comments

Comments
 (0)