Skip to content

Commit 0910d72

Browse files
committed
fix pep8
1 parent 0ce6cde commit 0910d72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythainlp/transliterate/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ def select_romanize_engine(engine: str):
8585
return romanize(text, fallback_func=fallback)
8686
else:
8787
rom_engine = select_romanize_engine(engine)
88-
trans_word=[]
88+
trans_word = []
8989
for word in text.split(' '):
9090
trans_word.append(rom_engine(word))
91-
new_word=''.join(trans_word)
91+
new_word = ''.join(trans_word)
9292
return new_word
9393

9494

0 commit comments

Comments
 (0)