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

Merge pull request #1455 from Badiboy/master

Fix timer_bot.py
This commit is contained in:
Badiboy 2022-02-15 19:55:32 +03:00 committed by GitHub
commit f689d90815
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ def set_timer(message):
@bot.message_handler(commands=['unset'])
def unset_timer(message):
schedule.clean(message.chat.id)
schedule.clear(message.chat.id)
if __name__ == '__main__':