From 52f743e43a9ef582e04d7a363fbda19824db6cc7 Mon Sep 17 00:00:00 2001 From: yum Date: Sun, 19 Feb 2023 11:46:43 -0800 Subject: Remove exponential backoff cap Allows sustained exponential backoff when not transcribing. Used to cap out at 1s. * Add more items to README TODO list * Adjust emote metadata * Emotes bugfix: Non-existent emote map doesn't cause transcription engine to bail out. --- Scripts/emotes_v2.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Scripts/emotes_v2.py') diff --git a/Scripts/emotes_v2.py b/Scripts/emotes_v2.py index 165db7c..aaf8d18 100644 --- a/Scripts/emotes_v2.py +++ b/Scripts/emotes_v2.py @@ -68,8 +68,12 @@ class EmotesState: self.bits = {} def load(self, pickle_path): - with open(pickle_path, 'rb') as f: - self.bits = pickle.load(f) + try: + with open(pickle_path, 'rb') as f: + self.bits = pickle.load(f) + except FileNotFoundError: + print(f"Emotes map does not exist at {pickle_path}", + file=sys.stderr) # This is quite slow since we do a search and replace (O(n)) # for each keyword O(m) times each variant of said keyword (O(k)). -- cgit v1.2.3