Skip to content

Commit

Permalink
edit parameter label
Browse files Browse the repository at this point in the history
  • Loading branch information
muddymudskipper committed Aug 8, 2024
1 parent 8e6120d commit 73ee56b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cmem_plugin_reason/plugin_reason.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
param_type=ChoiceParameterType(REASONERS),
name="reasoner",
label="Reasoner",
description="Reasoner option. Additionally, enable axiom generators below.",
description="Reasoner option. Additionally, select axiom generators below.",
default_value="",
),
PluginParameter(
Expand Down Expand Up @@ -282,7 +282,7 @@ def __init__( # noqa: PLR0913, C901
def generate_input_schema(self) -> EntitySchema:
"""Generate the output schema."""
return EntitySchema(
type_uri="urn:row",
type_uri="reason",
paths=[EntityPath(path="profile"), EntityPath(path="ontology")],
)

Expand Down
2 changes: 1 addition & 1 deletion cmem_plugin_reason/plugin_validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def generate_output_schema(self) -> EntitySchema:
if self.validate_profile:
paths.append(EntityPath(path="profile"))
return EntitySchema(
type_uri="https://eccenca.com/plugin_validateontology/type",
type_uri="validate",
paths=paths,
)

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 @@ -44,7 +44,7 @@
ONTOLOGY_GRAPH_IRI_PARAMETER = PluginParameter(
param_type=GraphParameterType(classes=["http://www.w3.org/2002/07/owl#Ontology"]),
name="ontology_graph_iri",
label="Ontology_graph_IRI",
label="Ontology graph IRI",
description="The IRI of the input ontology graph.",
)

Expand Down

0 comments on commit 73ee56b

Please sign in to comment.