From 0f58772c267290f81dc4c5a8e20193277a620817 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 25 Aug 2024 13:53:41 +0200 Subject: [PATCH] refactor: rename InclusiveLanguageBot to AwarenessBot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Renamed the InclusiveLanguageBot class and its instances to AwarenessBot for better alignment with the bot’s broader focus on awareness beyond just language inclusivity. --- bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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())