Skip to content

Commit f669ef0

Browse files
committed
Fixed spans
1 parent 2187e4d commit f669ef0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phonology_engine/phonology_engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def collapse(self, original_text, output, word_format='word'):
134134
if word_format not in _valid_word_formats:
135135
raise Exception('Invalide word format "%s". Can be one of: %s.' % (word_format, str(_valid_word_formats)))
136136

137-
res = str(original_text)
137+
res = original_text
138138
output_reversed = reversed(list(output))
139139
for element in output_reversed:
140140
if isinstance(element, tuple):

0 commit comments

Comments
 (0)