From 6668e43d2d67db4574e08a9d54bd80eb105c1b28 Mon Sep 17 00:00:00 2001 From: Sergey Maranchuk Date: Fri, 17 Apr 2020 22:12:06 +0300 Subject: inheriting from `object` not necessary in py3 --- tests/test_decorator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_decorator.py') diff --git a/tests/test_decorator.py b/tests/test_decorator.py index 2dcc9b4d3..b9a1f1e9d 100644 --- a/tests/test_decorator.py +++ b/tests/test_decorator.py @@ -26,5 +26,5 @@ class TestReify(unittest.TestCase): self.assertEqual(result, decorator) -class Dummy(object): +class Dummy: pass -- cgit v1.2.3