fix method calls
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
mitsuha_s 2022-07-08 22:15:46 +00:00
parent c4809a20ea
commit 1749bd5f5e
1 changed files with 2 additions and 3 deletions

View File

@ -103,15 +103,14 @@ class Notifier:
return
for chat_id in chat_ids:
self.__register_request_and_wait()
self.__count_request_and_wait()
self.bot.send_message(
chat_id=chat_id,
text=f'Updates from the {feed_title} feed:'
)
for update in updates:
self.__register_request_and_wait()
self.__count_request_and_wait()
self.__send_update(chat_id, update)
def __send_update(self, chat_id: int, update: FeedItem):