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_wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_wsgi.py') diff --git a/tests/test_wsgi.py b/tests/test_wsgi.py index a5a955621..7ef7fc8ef 100644 --- a/tests/test_wsgi.py +++ b/tests/test_wsgi.py @@ -121,7 +121,7 @@ def dummyapp(environ, start_response): """ """ -class DummyApp(object): +class DummyApp: def __call__(self, environ, start_response): """ """ -- cgit v1.2.3