Skip to content

Commit

Permalink
axiom generator parameters sorted alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
muddymudskipper committed Jun 26, 2024
1 parent ec4ebcf commit 7dfcff7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions cmem_plugin_robotreason/plugin_robotreason.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def convert_iri_to_filename(value: str) -> str:
param_type=BoolParameterType(),
name="sub_class",
label="SubClass",
description="Generated Axioms",
description="",
default_value=True,
advanced=True,
),
Expand Down Expand Up @@ -147,7 +147,7 @@ def convert_iri_to_filename(value: str) -> str:
param_type=BoolParameterType(),
name="class_assertion",
label="ClassAssertion",
description="",
description="Generated Axioms",
default_value=False,
advanced=True,
),
Expand Down Expand Up @@ -218,20 +218,20 @@ def __init__( # noqa: PLR0913
ontology_graph_iri: str = "",
result_iri: str = "",
reasoner: str = "elk",
sub_class: bool = True,
equivalent_class: bool = False,
disjoint_classes: bool = False,
class_assertion: bool = False,
data_property_characteristic: bool = False,
disjoint_classes: bool = False,
equivalent_class: bool = False,
equivalent_data_properties: bool = False,
sub_data_property: bool = False,
class_assertion: bool = False,
property_assertion: bool = False,
equivalent_object_property: bool = False,
inverse_object_properties: bool = False,
object_property_characteristic: bool = False,
sub_object_property: bool = False,
object_property_range: bool = False,
object_property_domain: bool = False,
object_property_range: bool = False,
property_assertion: bool = False,
sub_class: bool = True,
sub_data_property: bool = False,
sub_object_property: bool = False,
) -> None:
"""Init"""
self.data_graph_iri = data_graph_iri
Expand Down

0 comments on commit 7dfcff7

Please sign in to comment.