Skip to content

Commit

Permalink
Merge pull request #53 from IceTheDev2/code-cleaning-def-function(arg…
Browse files Browse the repository at this point in the history
…ument-type)-

Update diacritics_fix.py
  • Loading branch information
IceTheCoder authored May 22, 2023
2 parents e1fca5c + 668ea01 commit c52d379
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/diacritics_fix.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
"""
This module deals with remedying certain diacritics.
"""
import tkinter

REMEDIED_CHARS = {ord(c): c for c in 'ĂăÂâÎîȘșTtȚțEeÉéÈèÊêËëIiÍíÌìÎîOoÓóÒòÔôÖöŐőUuÚúÙùÛûÜüŰűNnÑñÇçSsŚśŠšZzŽž'}


def on_key_press(e):
def on_key_press(e: tkinter.Event):
"""
...
"""
Expand Down

0 comments on commit c52d379

Please sign in to comment.