summaryrefslogtreecommitdiff
path: root/Commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'Commands.py')
-rw-r--r--Commands.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Commands.py b/Commands.py
index 926b25b..e49d333 100644
--- a/Commands.py
+++ b/Commands.py
@@ -81,12 +81,10 @@ class GetTodayStatsCommand(CommandHandler):
class RecordStatsCommand(CommandHandler):
- __telegramBot: TelegramBot
__fortniteClient: FortniteClient
__statsRepository: StatsRepository
- def __init__(self, telegramBot: TelegramBot, fortniteClient: FortniteClient, statsRepository: StatsRepository):
- self.__telegramBot = telegramBot
+ def __init__(self, fortniteClient: FortniteClient, statsRepository: StatsRepository):
self.__fortniteClient = fortniteClient
self.__statsRepository = statsRepository