aboutsummaryrefslogtreecommitdiff
path: root/tests/test_func.py
diff options
context:
space:
mode:
authorThomas Kemmer <tkemmer@computer.org>2021-04-27 07:31:10 +0200
committerThomas Kemmer <tkemmer@computer.org>2021-04-27 11:16:48 +0200
commita34c227c26070f546b4201745d826b3266801c1f (patch)
treea9ae2f1d6507986adcf311fa675f1f12ad5a3b12 /tests/test_func.py
parent187b13a6da3e04511f3ed0c59889597edaec7f04 (diff)
downloadcachetools-a34c227c26070f546b4201745d826b3266801c1f.tar.gz
Remove Python 2 remnants.
Diffstat (limited to 'tests/test_func.py')
-rw-r--r--tests/test_func.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_func.py b/tests/test_func.py
index 721d5a6..72e7589 100644
--- a/tests/test_func.py
+++ b/tests/test_func.py
@@ -3,7 +3,7 @@ import unittest
import cachetools.func
-class DecoratorTestMixin(object):
+class DecoratorTestMixin:
def decorator(self, maxsize, **kwargs):
return self.DECORATOR(maxsize, **kwargs)