0
0
mirror of https://github.com/python/cpython.git synced 2024-11-21 12:59:38 +01:00

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

This commit is contained in:
Serhii Hidenko 2021-05-16 18:55:06 +03:00 committed by GitHub
parent de367378f6
commit a42d98ed91
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