]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove a redundant assignment in Tools/unittestgui/unittestgui.py (GH-21438) (#26169)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 16 May 2021 16:17:55 +0000 (09:17 -0700)
committerGitHub <noreply@github.com>
Sun, 16 May 2021 16:17:55 +0000 (17:17 +0100)
(cherry picked from commit a42d98ed91cd1f08b2e9734ca6ca136dd10dff5d)

Co-authored-by: Serhii Hidenko <shidenko97@gmail.com>
Tools/unittestgui/unittestgui.py

index c3b5fa45842093bb0c81465abbfa8bcf1cd20fd1..4fc5930adbbfc7747486ac4ef15b2cb879c6f1d5 100755 (executable)
@@ -54,7 +54,6 @@ class BaseGUITestRunner(object):
     def __init__(self, *args, **kwargs):
         self.currentResult = None
         self.running = 0
-        self.__rollbackImporter = None
         self.__rollbackImporter = RollbackImporter()
         self.test_suite = None