1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Fix worker_pool issue

This commit is contained in:
Badiboy 2021-07-13 22:09:56 +03:00
parent 6fb10e92e4
commit f52ea635e5

View File

@ -740,7 +740,7 @@ class TeleBot:
def stop_bot(self):
self.stop_polling()
if self.worker_pool:
if self.threaded and self.worker_pool:
self.worker_pool.close()
def set_update_listener(self, listener):