Skip to content

Commit 9e2d1f0

Browse files
committed
fix pep8
1 parent 0d86944 commit 9e2d1f0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gcloud/datastore/test_connection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,8 @@ def test_save_entity_wo_transaction_w_upsert(self):
643643
'commit',
644644
])
645645
http = conn._http = Http({'status': '200'}, rsp_pb.SerializeToString())
646-
result = conn.save_entity(DATASET_ID, key_pb, {'foo': u'Foo', 'bar': []})
646+
result = conn.save_entity(DATASET_ID, key_pb,
647+
{'foo': u'Foo', 'bar': []})
647648
self.assertEqual(result, True)
648649
cw = http._called_with
649650
self.assertEqual(cw['uri'], URI)

0 commit comments

Comments
 (0)