We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3378636 commit eb6b8e6Copy full SHA for eb6b8e6
tests/test_sqlalchemy_data_layer.py
@@ -991,7 +991,7 @@ class TestResource(ResourceDetail):
991
This fake resource always renders a constructor parameter
992
"""
993
def __init__(self, *args, **kwargs):
994
- super().__init__()
+ super(TestResource, self).__init__()
995
self.constant = args[0]
996
997
def get(self):
@@ -1009,7 +1009,7 @@ class TestResource(ResourceDetail):
1009
1010
1011
1012
1013
self.constant = kwargs.get('constant')
1014
1015
0 commit comments