Remove a redundant assignment in Tools/unittestgui/unittestgui.py (GH-21438) (#26169)

(cherry picked from commit a42d98ed91)

Co-authored-by: Serhii Hidenko <shidenko97@gmail.com>
This commit is contained in:
Miss Islington (bot) 2021-05-16 09:17:55 -07:00 committed by GitHub
parent 925cb85e9e
commit d43e1cbcc1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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