Skip to content

Commit 341a137

Browse files
committed
Inherit from EvaluatorBase
1 parent 82efd3e commit 341a137

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/epos/plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
from dicttoxml import dicttoxml
1818

1919
import api.utils as ut
20-
from api.evaluator import ConfigTerms, Evaluator
20+
from api.evaluator import ConfigTerms, EvaluatorBase
2121

2222
logging.basicConfig(
2323
stream=sys.stdout, level=logging.DEBUG, format="'%(name)s:%(lineno)s' | %(message)s"
2424
)
2525
logger = logging.getLogger("api.plugin")
2626

2727

28-
class Plugin(Evaluator):
28+
class Plugin(EvaluatorBase):
2929
"""A class used to define FAIR indicators tests. It is tailored towards the EPOS repository
3030
3131
...

0 commit comments

Comments
 (0)