diff options
author | Irit Katriel <iritkatriel@yahoo.com> | 2021-05-16 16:56:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-16 16:56:15 (GMT) |
commit | 9b59b6fff8121b2b0611f807fd310ca743ce3d25 (patch) | |
tree | 4ebd7cb46e383a00fcad98a37548d8d21363be00 /Tools | |
parent | 1afaaf5a2dc901377bb17f6fbe0cff7bf3b797e3 (diff) | |
download | cpython-9b59b6fff8121b2b0611f807fd310ca743ce3d25.zip cpython-9b59b6fff8121b2b0611f807fd310ca743ce3d25.tar.gz cpython-9b59b6fff8121b2b0611f807fd310ca743ce3d25.tar.bz2 |
[3.10] Remove a redundant assignment in Tools/unittestgui/unittestgui.py (GH-21438) (GH-26171)
(cherry picked from commit a42d98ed91cd1f08b2e9734ca6ca136dd10dff5d)
Co-authored-by: Serhii Hidenko <shidenko97@gmail.com>
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/unittestgui/unittestgui.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Tools/unittestgui/unittestgui.py b/Tools/unittestgui/unittestgui.py index c3b5fa4..4fc5930 100755 --- a/Tools/unittestgui/unittestgui.py +++ b/Tools/unittestgui/unittestgui.py @@ -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 |