Skip to content

Commit

Permalink
Inherit from EvaluatorBase
Browse files Browse the repository at this point in the history
  • Loading branch information
orviz committed Oct 17, 2024
1 parent 82efd3e commit 341a137
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/epos/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
from dicttoxml import dicttoxml

import api.utils as ut
from api.evaluator import ConfigTerms, Evaluator
from api.evaluator import ConfigTerms, EvaluatorBase

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


class Plugin(Evaluator):
class Plugin(EvaluatorBase):
"""A class used to define FAIR indicators tests. It is tailored towards the EPOS repository
...
Expand Down

0 comments on commit 341a137

Please sign in to comment.