Edge case fix

This commit is contained in:
Patrick Kidger
2023-02-25 17:38:45 -08:00
parent 5c25da278a
commit ffc56bf782
2 changed files with 11 additions and 5 deletions
-2
View File
@@ -31,8 +31,6 @@ class _ErrorableThread(threading.Thread):
super().run()
except Exception as e:
self.exc = e
finally:
del self._target, self._args, self._kwargs
def join(self, timeout=None):
super().join(timeout)