Skip to content

Commit

Permalink
no spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
moiSentineL committed Aug 7, 2024
1 parent 57c4b8b commit 401b01d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions dicto.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

class TextToSpeechDictator:
def __init__(self):

self.punctuation_mapping = {
".": "full stop",
",": "comma",
Expand Down Expand Up @@ -51,7 +50,6 @@ def speak_group(self, group, is_last_group):
)

def display_paragraph(self, paragraph, current_group):

os.system("cls" if os.name == "nt" else "clear") # Clear console

highlighted = []
Expand Down Expand Up @@ -104,7 +102,6 @@ def dictate(self, text):


if __name__ == "__main__":

dictator = TextToSpeechDictator()

parser = argparse.ArgumentParser()
Expand Down

0 comments on commit 401b01d

Please sign in to comment.