Skip to content

Commit

Permalink
edit validate parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
muddymudskipper committed Jul 8, 2024
1 parent 78f894e commit 9c8e5c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmem_plugin_reason/plugin_validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ def __init__( # noqa: PLR0913
ontology_graph_iri: str = "",
reasoner: str = "elk",
produce_graph: bool = False,
validate_profile: bool = False,
output_graph_iri: str = "",
write_md: bool = False,
md_filename: str = "",
validate_profile: bool = False,
stop_at_inconsistencies: bool = False,
max_ram_percentage: int = MAX_RAM_PERCENTAGE_DEFAULT,
) -> None:
Expand Down
2 changes: 1 addition & 1 deletion cmem_plugin_reason/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
VALIDATE_PROFILES_PARAMETER = PluginParameter(
param_type=BoolParameterType(),
name="validate_profile",
label="Annotate ontology with valid OWL2 profiles",
label="Validate OWL2 profiles",
description="""Validate the input ontology against OWL profiles (DL, EL, QL, RL, and
Full) and annotate the result graph.""",
default_value=False,
Expand Down

0 comments on commit 9c8e5c4

Please sign in to comment.