refactor: rename InclusiveLanguageBot to AwarenessBot

Renamed the InclusiveLanguageBot class and its instances to AwarenessBot
for better alignment with the bot’s broader focus on awareness beyond
just language inclusivity.
This commit is contained in:
Kumi 2024-08-25 13:53:41 +02:00
parent 629718b79f
commit 0f58772c26
Signed by: kumi
GPG key ID: ECBCC9082395383F

4
bot.py
View file

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