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

Commit 1c407ca

Browse files
authored
Merge pull request #151 from WorksApplications/fix_print_all_option
Fix print_all option
2 parents 89b6d27 + 0556c5f commit 1c407ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sudachipy/command_line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def run(tokenizer, mode, input_, print_all, stdot_logger, enable_dump):
7070
m.dictionary_form(),
7171
m.reading_form(),
7272
str(m.dictionary_id()),
73-
'[{}]'.format(','.join([str(synonym_group_id) for synonym_group_id in m.synonym_group_ids]))]
73+
'[{}]'.format(','.join([str(synonym_group_id) for synonym_group_id in m.synonym_group_ids()]))]
7474
if m.is_oov():
7575
list_info.append("(OOV)")
7676
stdot_logger.info("\t".join(list_info))

0 commit comments

Comments
 (0)