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

@@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
"""
@author: Edward Middleton-Smith
"""
from context import business_objects
from business_objects.braille_proficiency_level import Braille_Proficiency_Level
from business_objects.character_braille import Character_Braille
from business_objects.translation_braille import Translation_Braille
def test_alphabet_level_translation():
print('Alphabet Level Translation')
translation = Translation_Braille(
plaintext = "Be good",
translation_proficiency_level = Braille_Proficiency_Level(1)
)
translation.print()
if __name__ == "__main__":
test_alphabet_level_translation()