Minor edit to CoNLL-U converter (#6172)

This doesn't make a difference given how the `merged_morph` values
override the `morph` values for all the final docs, but could have led
to unexpected bugs in the future if the converter is modified.
This commit is contained in:
Adriane Boyd 2020-10-01 16:23:42 +02:00 committed by GitHub
parent a22215f427
commit 27cbffff1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -207,6 +207,7 @@ def conllu_sentence_to_doc(
pos=poses, pos=poses,
deps=deps, deps=deps,
lemmas=lemmas, lemmas=lemmas,
morphs=morphs,
heads=heads, heads=heads,
) )
for i in range(len(doc)): for i in range(len(doc)):