summaryrefslogtreecommitdiff
path: root/telegram_bot
diff options
context:
space:
mode:
authorDmitrii Morozov <snoopdesigns@gmail.com>2024-05-07 17:21:26 +0200
committerDmitrii Morozov <snoopdesigns@gmail.com>2024-05-07 17:21:26 +0200
commit4a7ebc16bc3a7ac6343aafe7d6938dd136e262aa (patch)
tree3d28bb3077385d537456d1f1bedec8eb216137f2 /telegram_bot
parentee3e87a6ec19878d56e8f386b20c58e4d9b211b3 (diff)
Refactoring
Diffstat (limited to 'telegram_bot')
-rw-r--r--telegram_bot/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/telegram_bot/commands.py b/telegram_bot/commands.py
index cafde03..cba5d5f 100644
--- a/telegram_bot/commands.py
+++ b/telegram_bot/commands.py
@@ -32,7 +32,7 @@ class GetStatusCommand(CommandHandler):
self.__fortnite_status = FortniteStatus()
async def handle(self, message: telebot.types.Message):
- await self.__telegram_bot.reply(message, format_fortnite_status(self.__fortnite_status.getStatus()))
+ await self.__telegram_bot.reply(message, format_fortnite_status(self.__fortnite_status.get_status()))
class GetFriendsCommand(CommandHandler):