summaryrefslogtreecommitdiff
path: root/docs/quick_tour
diff options
context:
space:
mode:
authorSergey Maranchuk <slav0nic@python.su>2020-04-17 23:45:53 +0300
committerSergey Maranchuk <slav0nic@python.su>2020-04-19 00:53:53 +0300
commiteb08dcf72a5b3720d25260e4333a4a8b88e5ced4 (patch)
tree1e8bc17dc4165b784e2a3cf13cf20b831692517f /docs/quick_tour
parentaadf19a5b81645b18e50699fe2f180aeff3409b3 (diff)
downloadpyramid-eb08dcf72a5b3720d25260e4333a4a8b88e5ced4.tar.gz
pyramid-eb08dcf72a5b3720d25260e4333a4a8b88e5ced4.tar.bz2
pyramid-eb08dcf72a5b3720d25260e4333a4a8b88e5ced4.zip
invoke super() without arguments
Diffstat (limited to 'docs/quick_tour')
-rw-r--r--docs/quick_tour/sqla_demo/tests/test_it.py2
1 files changed, 1 insertions, 1 deletions
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