diff --git a/src/lambo/utils/printer.py b/src/lambo/utils/printer.py index 3de74e70fd900f11af97bd7f143d997332605c1e..bd731bae035c5833070440aca249c64501fb34f5 100644 --- a/src/lambo/utils/printer.py +++ b/src/lambo/utils/printer.py @@ -20,7 +20,7 @@ def print_document_to_screen(document): formatted = '' for token in sentence.tokens: if token.is_multi_word: - formatted += '(' + token.text+ '=(' + '-'.join(token.words) + '))' + formatted += '(' + token.text+ '=' + '-'.join(token.words) + ')' else: formatted += '(' + token.text + ')' print('TOKENS: ' + formatted)