diff --git a/module-testing.py b/module-testing.py index 28fb680..0cfc947 100644 --- a/module-testing.py +++ b/module-testing.py @@ -39,7 +39,7 @@ class ModuleV1: # set environmental variables def set_env(self): - self.RESPONCE = "" + self.RESPONSE = "" def set_predefine(self): try: @@ -55,7 +55,7 @@ class ModuleV1: self.MESSAGE = msg try: exec(self.code) - return self.RESPONCE + return self.RESPONSE except Exception as e: print(f"[ERROR] module v1: module \"{self.path}\" ({self.alias}) raised exception \"{e}\"") return "" @@ -197,9 +197,9 @@ def queue_processor(): for mod in mcu.modules: if mod.enabled: if mod.version == 1 or mod.version == 2: - responce = mod.process(msg) - if responce: - print(f"Responded using module {mod.path} ({mod.alias}) with text: {responce}") + response = mod.process(msg) + if response: + print(f"Responded using module {mod.path} ({mod.alias}) with text: {response}") break del message_queue[0] @@ -209,7 +209,7 @@ def queue_processor(): else: time.sleep(1) - except Exception as e: + except Exception: print(f"[ERROR] queue_processor: current message queue: {message_queue}") print("[ERROR] queue_processor: error while processing message, trying to delete it...") try: diff --git a/modules/auto-schedule-pro/index.py b/modules/auto-schedule-pro/index.py index 8cbdc26..35e96ee 100644 --- a/modules/auto-schedule-pro/index.py +++ b/modules/auto-schedule-pro/index.py @@ -79,10 +79,10 @@ if self.MESSAGE["text"].lower() == "!пара-old2": human_readable_date += " до " human_readable_date += dt_lesson_finish.strftime("%H:%M") - self.RESPONCE = "Актуальна пара: {}\nДата: {}\nВикладач: {}\nПосилання на пару: {}".format(p['name'], human_readable_date, p['teacher'], p['link']) + self.RESPONSE = "Актуальна пара: {}\nДата: {}\nВикладач: {}\nПосилання на пару: {}".format(p['name'], human_readable_date, p['teacher'], p['link']) print("test3.1.5") else: - self.RESPONCE = "Пар немає взагалі. Ми вільні!" + self.RESPONSE = "Пар немає взагалі. Ми вільні!" else: print("test3.2") @@ -106,7 +106,7 @@ if self.MESSAGE["text"].lower() == "!пара-old2": human_readable_date += " до " human_readable_date += dt_lesson_finish.strftime("%H:%M") - self.RESPONCE = "Актуальна пара: {}\nДата: {}\nВикладач: {}\nПосилання на пару: {}".format(p['name'], human_readable_date, p['teacher'], p['link']) + self.RESPONSE = "Актуальна пара: {}\nДата: {}\nВикладач: {}\nПосилання на пару: {}".format(p['name'], human_readable_date, p['teacher'], p['link']) if self.MESSAGE["text"].lower().split()[0] == "!пари-old2": command = self.MESSAGE["text"].lower().split() @@ -183,4 +183,4 @@ if self.MESSAGE["text"].lower().split()[0] == "!пари-old2": result_text += "\n" - self.RESPONCE = result_text + self.RESPONSE = result_text diff --git a/modules/auto-schedule/index.py b/modules/auto-schedule/index.py index ebb1e6c..fbce78d 100644 --- a/modules/auto-schedule/index.py +++ b/modules/auto-schedule/index.py @@ -24,7 +24,7 @@ if self.MESSAGE["text"].lower() == "!пара-old": pair_found = True break - self.RESPONCE = f"Сьогодні вихідний, тому пар немає)\n"\ + self.RESPONSE = f"Сьогодні вихідний, тому пар немає)\n"\ f"Наступна пара - {next_pair['subject']} ({next_pair['lector']}) о {self.reverse_timetable[int(j)]} у {self.days_rod[day]}\n"\ f"Посилання (якщо воно чомусь треба): {next_pair['link']}" else: @@ -33,13 +33,13 @@ if self.MESSAGE["text"].lower() == "!пара-old": print("[DEBUG] Looking up a relevant pair...") try: relevant_pair = schedule[current_week][current_day][str(self.timetable[i])] - self.RESPONCE = f"Актуальна пара: {relevant_pair['subject']} ({relevant_pair['lector']}), початок о {self.reverse_timetable[self.timetable[i]]}\n"\ + self.RESPONSE = f"Актуальна пара: {relevant_pair['subject']} ({relevant_pair['lector']}), початок о {self.reverse_timetable[self.timetable[i]]}\n"\ f"Посилання: {relevant_pair['link']}" break except Exception as e: print(f"[WARN] module: auto-schedule: exception {e} while looking up the pair") else: - self.RESPONCE = "Сьогодні більше немає пар" + self.RESPONSE = "Сьогодні більше немає пар" except Exception as e: print(f"[WARN] module: auto-schedule: failed to process schedule.json ({e})") diff --git a/modules/echo-v1.0/index.py b/modules/echo-v1.0/index.py index 9d384d9..7955b52 100644 --- a/modules/echo-v1.0/index.py +++ b/modules/echo-v1.0/index.py @@ -1,2 +1,2 @@ if msg.chat["type"] == "private": - self.RESPONCE = self.MESSAGE["text"] + self.RESPONSE = self.MESSAGE["text"] diff --git a/modules/mass-tagger/index.py b/modules/mass-tagger/index.py index 667a3de..0b03e07 100644 --- a/modules/mass-tagger/index.py +++ b/modules/mass-tagger/index.py @@ -9,4 +9,4 @@ if "%" in self.MESSAGE["text"]: tagged_users |= self.tag_sets[i] if tagging_issued: - self.RESPONCE = "Користувач використав масовий тег з повідомленням: {}\n\n{}".format(self.MESSAGE["text"], " ".join(tagged_users)) + self.RESPONSE = "Користувач використав масовий тег з повідомленням: {}\n\n{}".format(self.MESSAGE["text"], " ".join(tagged_users)) diff --git a/modules/qna-basic/index.py b/modules/qna-basic/index.py index a59822c..3afde2d 100644 --- a/modules/qna-basic/index.py +++ b/modules/qna-basic/index.py @@ -17,7 +17,7 @@ for file in os.listdir(self.path + "db/"): break if all_words_in: - self.RESPONCE = criteria["responce_text"] + self.RESPONSE = criteria["responce_text"] responce_given = True break diff --git a/modules/transliteration-decoder/index.py b/modules/transliteration-decoder/index.py index 866f887..6cf3db3 100644 --- a/modules/transliteration-decoder/index.py +++ b/modules/transliteration-decoder/index.py @@ -17,14 +17,14 @@ if (command[0] in self.aliases) and (1 <= command_length <= 3): decoded_text = text_to_decode if chosen_model not in models: - self.RESPONCE = f"Такого варіанту транслітерації не існує. Доступні варіанти: {', '.join(list(models.keys()))}" + self.RESPONSE = f"Такого варіанту транслітерації не існує. Доступні варіанти: {', '.join(list(models.keys()))}" else: for i in models[chosen_model]: decoded_text = decoded_text.replace(i[0], i[1]) decoded_text = decoded_text.replace(i[0].capitalize(), i[1].capitalize()) decoded_text = decoded_text.replace(i[0].upper(), i[1].upper()) - self.RESPONCE = f"Результат: {decoded_text}" + self.RESPONSE = f"Результат: {decoded_text}" except Exception as e: print(f"[translit-decoder] Got exception: {e}")