summaryrefslogtreecommitdiff
path: root/telegram_bot/commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'telegram_bot/commands.py')
-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