aboutsummaryrefslogtreecommitdiff
path: root/tests/test_lfu.py
diff options
context:
space:
mode:
authorThomas Kemmer <tkemmer@computer.org>2015-06-06 14:24:51 +0200
committerThomas Kemmer <tkemmer@computer.org>2015-06-06 15:20:24 +0200
commitec80673eb18a43f2f0299235e4b625b30322b664 (patch)
tree9bd31d0acffb86cfab013312fa2df2e6ce8352ac /tests/test_lfu.py
parent7827ec015a551f11c3ac55e3583b8592c4ae88d4 (diff)
downloadcachetools-ec80673eb18a43f2f0299235e4b625b30322b664.tar.gz
Fix #33: Code cleanup for improved PEP 8 conformance.
Diffstat (limited to 'tests/test_lfu.py')
-rw-r--r--tests/test_lfu.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_lfu.py b/tests/test_lfu.py
index 3b69647..1c4741b 100644
--- a/tests/test_lfu.py
+++ b/tests/test_lfu.py
@@ -1,8 +1,9 @@
import unittest
-from . import CacheTestMixin, DecoratorTestMixin
from cachetools import LFUCache, lfu_cache
+from . import CacheTestMixin, DecoratorTestMixin
+
class LFUCacheTest(unittest.TestCase, CacheTestMixin, DecoratorTestMixin):