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:
parent
629718b79f
commit
0f58772c26
1 changed files with 2 additions and 2 deletions
4
bot.py
4
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())
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue