From b25c714e6f0331929abaa7ecabb86ab9db99c371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Moll?= <36770313+moll-re@users.noreply.github.com> Date: Fri, 28 Jan 2022 11:46:53 +0100 Subject: [PATCH] Update main.py --- app/bot/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/bot/main.py b/app/bot/main.py index 6591462..c959e80 100644 --- a/app/bot/main.py +++ b/app/bot/main.py @@ -22,13 +22,13 @@ class ChatBot(): self.version = version # Import apis - self.api_weather = api.weather.WeatherFetch(api.keys.weather_api) - self.api_reddit = api.reddit.RedditFetch(api.keys.reddit_api) + self.api_weather = api.weather.WeatherFetch(api.apikeys.weather_api) + self.api_reddit = api.reddit.RedditFetch(api.apikeys.reddit_api) self.api_search = api.search.WebSearch() self.api_art = api.metmuseum.ArtFetch() # and so on - self.telegram = Updater(api.keys.telegram_api, use_context=True) + self.telegram = Updater(api.apikeys.telegram_api, use_context=True) self.dispatcher = self.telegram.dispatcher