Check code style of tests with flake8

This commit is contained in:
Philipp Wolfer
2020-05-12 16:10:37 +02:00
parent c7066f5c6f
commit 909ea667b8
8 changed files with 11 additions and 13 deletions

View File

@@ -73,7 +73,7 @@ class LRUCacheTest(PicardTestCase):
def test_get_keyerror(self):
lrucache = LRUCache(3)
with self.assertRaises(KeyError):
value = lrucache['notakey']
value = lrucache['notakey'] # noqa: F841
def test_del_keyerror(self):
lrucache = LRUCache(3)