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_integration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_integration.py') diff --git a/tests/test_integration.py b/tests/test_integration.py index 8a4575d7b..9a690a8d3 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -62,7 +62,7 @@ class WGSIAppPlusViewConfigTests(unittest.TestCase): self.assertEqual(view.__original_view__, wsgiapptest) -class IntegrationBase(object): +class IntegrationBase: root_factory = None package = None @@ -966,7 +966,7 @@ class AcceptContentTypeTest(unittest.TestCase): self.assertEqual(res.content_type, 'text/x-fallback') -class DummyContext(object): +class DummyContext: pass -- cgit v1.2.3