From eb08dcf72a5b3720d25260e4333a4a8b88e5ced4 Mon Sep 17 00:00:00 2001 From: Sergey Maranchuk Date: Fri, 17 Apr 2020 23:45:53 +0300 Subject: invoke super() without arguments --- docs/quick_tour/sqla_demo/tests/test_it.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/quick_tour') diff --git a/docs/quick_tour/sqla_demo/tests/test_it.py b/docs/quick_tour/sqla_demo/tests/test_it.py index c79e05022..f0848564b 100644 --- a/docs/quick_tour/sqla_demo/tests/test_it.py +++ b/docs/quick_tour/sqla_demo/tests/test_it.py @@ -43,7 +43,7 @@ class BaseTest(unittest.TestCase): class TestMyViewSuccessCondition(BaseTest): def setUp(self): - super(TestMyViewSuccessCondition, self).setUp() + super().setUp() self.init_database() from sqla_demo.models import MyModel -- cgit v1.2.3