X Tutup
Skip to content

Commit 0342a5b

Browse files
Avanatikertsnoam
authored andcommitted
Update timerbot.py
The missing space bothered me.
1 parent b7f83cf commit 0342a5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/timerbot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def set(bot, update, args):
4444
# args[0] should contain the time for the timer in seconds
4545
due = int(args[0])
4646
if due < 0:
47-
bot.sendMessage(chat_id,text='Sorry we can not go back to future!')
47+
bot.sendMessage(chat_id, text='Sorry we can not go back to future!')
4848
def alarm(bot):
4949
""" Inner function to send the alarm message """
5050
bot.sendMessage(chat_id, text='Beep!')

0 commit comments

Comments
 (0)
X Tutup