diff -r 73ab542565e0 -r 5cc8deb96b48 tests/basic_test_result.py --- a/tests/basic_test_result.py Sun Jan 05 22:12:02 2025 -0500 +++ b/tests/basic_test_result.py Sun Jan 05 22:23:31 2025 -0500 @@ -9,7 +9,7 @@ class TestResult(base_class): def __init__(self, options, *args, **kwargs): - super(TestResult, self).__init__(*args, **kwargs) + super().__init__(*args, **kwargs) self._options = options # unittest.TestResult didn't have skipped until 2.7. We need to @@ -53,4 +53,4 @@ return False def stopTest(self, test, interrupted=False): - super(TestResult, self).stopTest(test) + super().stopTest(test)