From fb89f6792b050707027f3e850652754bb9f0530b Mon Sep 17 00:00:00 2001 From: tamuhey Date: Tue, 22 Oct 2019 21:38:17 +0900 Subject: [PATCH] refactor: remove unused variable (#4499) --- spacy/gold.pyx | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/gold.pyx b/spacy/gold.pyx index 1e626c4ed..990440f59 100644 --- a/spacy/gold.pyx +++ b/spacy/gold.pyx @@ -497,7 +497,6 @@ def _json_iterate(loc): def iob_to_biluo(tags): out = [] - curr_label = None tags = list(tags) while tags: out.extend(_consume_os(tags))