From 35d055ea62e0168a39886f8997a2c2496fdf3457 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Wed, 29 Jan 2020 16:25:39 +0100 Subject: [PATCH] fix lint --- python/src/deltachat/account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/deltachat/account.py b/python/src/deltachat/account.py index c83843422..863f9efbd 100644 --- a/python/src/deltachat/account.py +++ b/python/src/deltachat/account.py @@ -567,7 +567,6 @@ class IOThreads: def stop(self, wait=False): lib.dc_context_shutdown(self._dc_context) - if wait: for name, thread in self._name2thread.items(): thread.join() @@ -579,6 +578,7 @@ class IOThreads: self._log_event("py-bindings-info", 0, "INBOX THREAD FINISHED") + class EventLogger: _loglock = threading.RLock()