Skip to content

Commit

Permalink
pylint: auto fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xditya committed Jan 9, 2021
1 parent cd6ebe8 commit c7155ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion telebot/plugins/giveawayhelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ async def forw(event):
try:
await borg.forward_messages(int(channel.chat_id), previous_message)
sent_count += 1
await mssg.edit(f"Sent : {sent_count}\nError : {error_count}\nTotal : {len(channels)}")
await mssg.edit(
f"Sent : {sent_count}\nError : {error_count}\nTotal : {len(channels)}"
)
except Exception as error:
try:
await borg.send_message(
Expand Down

0 comments on commit c7155ca

Please sign in to comment.