From 866179350be1e86d0f56463a52976007fb07e63d Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sat, 6 Jun 2020 15:11:13 +0200 Subject: [PATCH] Fix import --- spacy/_gold/example.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spacy/_gold/example.py b/spacy/_gold/example.py index db9e10093..7528c360e 100644 --- a/spacy/_gold/example.py +++ b/spacy/_gold/example.py @@ -1,5 +1,6 @@ from .annotation import TokenAnnotation, DocAnnotation -from .gold_parse import GoldParse +# We're hoping to kill this GoldParse dependency but for now match semantics. +from ..syntax.gold_parse import GoldParse class Example: