Skip to content

Commit

Permalink
fix(make_json_dict.py): Add white space after ,. fix #438 @0.1h
Browse files Browse the repository at this point in the history
  • Loading branch information
tKondoYDC committed Oct 6, 2018
1 parent acb9e10 commit 59e7a32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/make_json_dict.py
Expand Up @@ -15,7 +15,7 @@
u'ッ': u'ツ',
}

CONVERSION_TABLE = {u'ヂ': u'ジ', u'ヅ': u'ズ',}
CONVERSION_TABLE = {u'ヂ': u'ジ', u'ヅ': u'ズ', }

with open(sys.argv[1]) as f:
inputData = {}
Expand Down

0 comments on commit 59e7a32

Please sign in to comment.