Skip to content

Commit 36e0338

Browse files
committed
Fixed pep8
1 parent 404e402 commit 36e0338

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythainlp/util/morse.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@
124124
decodingeng[val] = key
125125
decodingthai = {}
126126
for key, val in THAI_MORSE_CODE.items():
127-
decodingthai[val.replace(" ","")] = key
127+
decodingthai[val.replace(" ", "")] = key
128128
for key, val in THAI_MORSE_CODE.items():
129-
THAI_MORSE_CODE[key] = val.replace(" ","")
129+
THAI_MORSE_CODE[key] = val.replace(" ", "")
130130

131131

132132
def morse_encode(text: str, lang: str = "th") -> str:

0 commit comments

Comments
 (0)