Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Placate pycodestyle 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bbayles committed Nov 25, 2016
1 parent 3623601 commit 57880cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ universal = 1

[flake8]
exclude = ./docs/conf.py
ignore = E731
ignore = E731, F999
1 change: 1 addition & 0 deletions tests/test_lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -848,5 +848,6 @@ def test_mutable(self):
Q.rotate()
self.assertEqual(Q[0], [1, 2, 3])


if __name__ == '__main__':
unittest.main()
1 change: 1 addition & 0 deletions tests/test_syncable.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,5 +380,6 @@ def test_sync(self):
self.assertEqual(lru_dict.persistence['b'], -2)
self.assertEqual(len(lru_dict.cache), 0)


if __name__ == '__main__':
unittest.main()

0 comments on commit 57880cc

Please sign in to comment.