Skip to content

Commit 01714b2

Browse files
committed
pep8 fix
1 parent 9a8d4e3 commit 01714b2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

gcloud/datastore/test_connection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,8 @@ def test_save_entity_w_exclude_from_indexes(self):
686686
'commit',
687687
])
688688
http = conn._http = Http({'status': '200'}, rsp_pb.SerializeToString())
689-
result = conn.save_entity(DATASET_ID, key_pb, {'foo': u'Foo', 'bar': [u'bar1', u'bar2']},
689+
result = conn.save_entity(DATASET_ID, key_pb,
690+
{'foo': u'Foo', 'bar': [u'bar1', u'bar2']},
690691
exclude_from_indexes=['foo', 'bar'])
691692
self.assertEqual(result, True)
692693
cw = http._called_with

0 commit comments

Comments
 (0)