Skip to content
This repository has been archived by the owner on Mar 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #151 from WorksApplications/fix_print_all_option
Browse files Browse the repository at this point in the history
Fix print_all option
  • Loading branch information
kazuma-t authored Jan 4, 2021
2 parents 89b6d27 + 0556c5f commit 1c407ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sudachipy/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def run(tokenizer, mode, input_, print_all, stdot_logger, enable_dump):
m.dictionary_form(),
m.reading_form(),
str(m.dictionary_id()),
'[{}]'.format(','.join([str(synonym_group_id) for synonym_group_id in m.synonym_group_ids]))]
'[{}]'.format(','.join([str(synonym_group_id) for synonym_group_id in m.synonym_group_ids()]))]
if m.is_oov():
list_info.append("(OOV)")
stdot_logger.info("\t".join(list_info))
Expand Down

0 comments on commit 1c407ca

Please sign in to comment.