diff --git a/bot.py b/bot.py index f09fd3a..d656c74 100644 --- a/bot.py +++ b/bot.py @@ -10,7 +10,7 @@ from nio import ( ) -class InclusiveLanguageBot: +class AwarenessBot: def __init__(self, config_path): # Load configuration from YAML file with open(config_path, "r") as config_file: @@ -125,7 +125,7 @@ class InclusiveLanguageBot: def main(): - bot = InclusiveLanguageBot("config.yaml") + bot = AwarenessBot("config.yaml") asyncio.get_event_loop().run_until_complete(bot.run())