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/pkgs/exceptionviewapp/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/pkgs/exceptionviewapp/models.py') diff --git a/tests/pkgs/exceptionviewapp/models.py b/tests/pkgs/exceptionviewapp/models.py index 25f8e9156..e724b5c96 100644 --- a/tests/pkgs/exceptionviewapp/models.py +++ b/tests/pkgs/exceptionviewapp/models.py @@ -1,4 +1,4 @@ -class NotAnException(object): +class NotAnException: pass @@ -6,11 +6,11 @@ class AnException(Exception): pass -class RouteContext(object): +class RouteContext: pass -class RouteContext2(object): +class RouteContext2: pass -- cgit v1.2.3