Remove print statement
This commit is contained in:
parent
4e04fbe997
commit
38c5cf5b2d
1 changed files with 1 additions and 2 deletions
|
|
@ -245,7 +245,6 @@ class JapaneseTransliterator(object):
|
||||||
codepoints = map(lambda char: ord(char), list(text))
|
codepoints = map(lambda char: ord(char), list(text))
|
||||||
|
|
||||||
for codepoint in codepoints:
|
for codepoint in codepoints:
|
||||||
print codepoint
|
|
||||||
if codepoint >= range_start and codepoint <= range_end:
|
if codepoint >= range_start and codepoint <= range_end:
|
||||||
transposed_text += unichr(codepoint + distance)
|
transposed_text += unichr(codepoint + distance)
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue