Skip to content

Commit 3dae10e

Browse files
committed
followed flake8 linitng, Fix #767
1 parent 80b0327 commit 3dae10e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

covid19_telegram_bot/covid19_telegram_bot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ def send_msg(text):
1414
chat_id = "GROUP-CHAT-ID-HERE"
1515
url_req = (
1616
'https://api.telegram.org/'
17-
'bot' + token + '/sendMessage' +
18-
'?chat_id=' + chat_id + "&text=" + text)
17+
'bot' + token + '/sendMessage' + '?chat_id'
18+
'=' + chat_id + "&text=" + text)
1919
results = requests.get(url_req)
2020
print(results.json())
2121

0 commit comments

Comments
 (0)