Switch to no argument super() (#1361)

Now that Python 2 support is gone, we can switch to no argument super()
rather than calling our superclass by name.
This commit is contained in:
Steve Kowalik
2020-01-21 21:15:22 +11:00
committed by GitHub
parent 06a300aee0
commit 37122cf2bb
74 changed files with 75 additions and 75 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ from . import Framework
class RepositoryKey(Framework.TestCase):
def setUp(self):
Framework.TestCase.setUp(self)
super().setUp()
# When recording test, be sure to create a deploy key for yourself on
# Github and update it here.
self.key = self.g.get_user("lra").get_repo("mackup").get_key(21870881)