mirror of
https://github.com/fergalmoran/picard.git
synced 2025-12-27 11:47:34 +00:00
Check code style of tests with flake8
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user