Skip to content

Commit 9cd0f6a

Browse files
committed
Dead chickens on the altar of pylint/pep8 continuation taboos.
1 parent f11fa24 commit 9cd0f6a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

gcloud/datastore/test_connection.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,8 @@ def test_lookup_multiple_keys_w_missing_non_empty(self):
336336
key_pb2 = Key(path=[{'kind': 'Kind', 'id': 2345}]).to_protobuf()
337337
conn = self._makeOne()
338338
missing = ['this', 'list', 'is', 'not', 'empty']
339-
self.assertRaises(ValueError,
339+
self.assertRaises(
340+
ValueError,
340341
conn.lookup, DATASET_ID, [key_pb1, key_pb2], missing=missing)
341342

342343
def test_lookup_multiple_keys_w_deferred(self):
@@ -385,7 +386,8 @@ def test_lookup_multiple_keys_w_deferred_non_empty(self):
385386
key_pb2 = Key(path=[{'kind': 'Kind', 'id': 2345}]).to_protobuf()
386387
conn = self._makeOne()
387388
deferred = ['this', 'list', 'is', 'not', 'empty']
388-
self.assertRaises(ValueError,
389+
self.assertRaises(
390+
ValueError,
389391
conn.lookup, DATASET_ID, [key_pb1, key_pb2], deferred=deferred)
390392

391393
def test_lookup_multiple_keys_w_deferred_from_backend_but_not_passed(self):

0 commit comments

Comments
 (0)