Fix(Content): Corrected file and project references in README.

This commit is contained in:
2025-02-26 12:53:05 +00:00
parent 9a411dd56e
commit 7df2642002
8 changed files with 94 additions and 7 deletions

View File

@@ -61,7 +61,7 @@ class Translation_Braille(BaseModel):
break
if known_translations.apply(lambda x: x.iloc[3] == key and x.iloc[1].value <= self.translation_proficiency_level.value, axis=1).any():
translation_Braille = known_translations.apply(lambda x: x if (x.iloc[3] == key and x.iloc[1].value <= self.translation_proficiency_level.value) else None, axis=1).dropna().values.tolist()[0]
braille_text.append(translation_Braille.iloc[2])
braille_text.append(translation_Braille[2])
index_key_start += key_length
found_key = True
break