Skip to content
This repository was archived by the owner on Sep 6, 2022. It is now read-only.

Commit d4ba0b9

Browse files
committed
lint
1 parent dfaff28 commit d4ba0b9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/_ndb/test_types.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,6 @@ def testQuery_keyProperty(self):
274274
self.assertDictEqual(author, {'name': u'john dow', 'email': u'[email protected]'})
275275
self.assertDictContainsSubset(dict(headline='h1', authorKey=author_key.urlsafe()), article)
276276

277-
278277
def testQuery_repeatedKeyProperty(self):
279278
tk1 = Tag(name="t1").put()
280279
tk2 = Tag(name="t2").put()
@@ -304,5 +303,5 @@ def testQuery_repeatedKeyProperty(self):
304303

305304
self.assertLength(article['tags'], 4)
306305
for i in range(0, 3):
307-
self.assertEqual(article['tags'][i]['name'], 't%s' % (i+1))
306+
self.assertEqual(article['tags'][i]['name'], 't%s' % (i + 1))
308307

0 commit comments

Comments
 (0)