This commit is contained in:
Matthew Honnibal 2016-11-25 09:16:43 -06:00
commit f799a07f25
1 changed files with 4 additions and 4 deletions

View File

@ -114,10 +114,10 @@ def intify_attrs(stringy_attrs, strings_map=None, _do_deprecated=False):
stringy_attrs["LEMMA"] = stringy_attrs.pop("L")
if 'pos' in stringy_attrs:
stringy_attrs["TAG"] = stringy_attrs.pop("pos")
if 'morph' in stringy_attrs:
morphs = stringy_attrs.pop('morph')
for name, value in morphs.items():
stringy_attrs[name] = value
#if 'morph' in stringy_attrs:
# morphs = stringy_attrs.pop('morph')
# for name, value in morphs.items():
# stringy_attrs[name] = value
for name, value in stringy_attrs.items():
if isinstance(name, int):
int_key = name