summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitrii Morozov <snoopdesigns@gmail.com>2024-06-24 18:19:26 +0200
committerDmitrii Morozov <snoopdesigns@gmail.com>2024-06-24 18:19:26 +0200
commit72efe8976dceb9cd0d998def404dd2b6852b1c25 (patch)
tree318a3ec24109ecbfd82cb87bbee88d96134b5d36
parentb0744fddfdbbf2f22a199e0d57592a43e5864c54 (diff)
Removed unused command
-rw-r--r--telegram_bot/commands.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/telegram_bot/commands.py b/telegram_bot/commands.py
index e3f8efa..697d1e3 100644
--- a/telegram_bot/commands.py
+++ b/telegram_bot/commands.py
@@ -122,16 +122,6 @@ class GetStatsCommand(CommandHandler):
async def handle(self, message: telebot.types.Message):
await self.__telegram_bot.reply(message, 'Which statistics would you like to see?', reply_markup=self.__reply_markup)
-class GetTodayStatsCommand(CommandHandler):
-
- __telegram_bot: TelegramBot
-
- def __init__(self, telegram_bot: TelegramBot):
- self.__telegram_bot = telegram_bot
-
- async def handle(self, message: telebot.types.Message):
- await self.__telegram_bot.reply(message, 'Use new command /stats, you must, young Padawan')
-
class RecordStatsCommand(CommandHandler):
__fortnite_client: FortniteClient