From 7a4b39588acec9d94ad25a810a8b6a82722a10c0 Mon Sep 17 00:00:00 2001 From: Stanislav Schmidt Date: Wed, 6 May 2020 18:30:44 +0200 Subject: [PATCH] Make relative import correct The relative import from `classes.py` needs to be preceded by a period, otherwise this doesn't work and throws an error --- marve/Measurements.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/marve/Measurements.py b/marve/Measurements.py index d81bd49..482eefb 100644 --- a/marve/Measurements.py +++ b/marve/Measurements.py @@ -28,7 +28,7 @@ from collections import OrderedDict import logging # custom -from classes import Stats, Annotations +from .classes import Stats, Annotations from grobid_quantities.quantities import QuantitiesClient