We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82efd3e commit 341a137Copy full SHA for 341a137
plugins/epos/plugin.py
@@ -17,15 +17,15 @@
17
from dicttoxml import dicttoxml
18
19
import api.utils as ut
20
-from api.evaluator import ConfigTerms, Evaluator
+from api.evaluator import ConfigTerms, EvaluatorBase
21
22
logging.basicConfig(
23
stream=sys.stdout, level=logging.DEBUG, format="'%(name)s:%(lineno)s' | %(message)s"
24
)
25
logger = logging.getLogger("api.plugin")
26
27
28
-class Plugin(Evaluator):
+class Plugin(EvaluatorBase):
29
"""A class used to define FAIR indicators tests. It is tailored towards the EPOS repository
30
31
...
0 commit comments