Skip to content

Commit

Permalink
fix ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
muddymudskipper committed Jun 26, 2024
1 parent 3a25792 commit 8610773
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmem_plugin_robotreason/plugin_robotreason.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def __init__( # noqa: PLR0913
errors += "Result graph IRI cannot be the same as the data graph IRI. "
if result_graph_iri == ontology_graph_iri:
errors += "Result graph IRI cannot be the same as the ontology graph IRI. "
if reasoner not in REASONERS.keys():
if reasoner not in REASONERS:
errors += "Invalid value for parameter Reasoner. "
not_bool = sorted([k for k, v in self.axioms.items() if not isinstance(v, bool)])
if not_bool:
Expand Down

0 comments on commit 8610773

Please sign in to comment.