Skip to content

Commit 6f9b6c9

Browse files
committed
Merge branch 'develop' into library-usage
2 parents 8f957dc + 85cf1d8 commit 6f9b6c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

case_utils/case_validate/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,12 +183,12 @@ def main() -> None:
183183
action="store_true",
184184
help="(As with pyshacl CLI) Allow import of sub-graphs defined in statements with owl:imports.",
185185
)
186+
# NOTE: The "ontology graph" in the --inference help is the mix of the SHACL shapes graph and OWL ontology (or RDFS schema) graph.
186187
parser.add_argument(
187188
"-i",
188189
"--inference",
189190
choices=("none", "rdfs", "owlrl", "both"),
190-
default="none",
191-
help='(As with pyshacl CLI) Choose a type of inferencing to run against the Data Graph before validating. Default is "none".',
191+
help='(As with pyshacl CLI) Choose a type of inferencing to run against the Data Graph before validating. The default behavior if this flag is not provided is to behave as "none", if not using the --metashacl flag. The default behavior when using the --metashacl flag will apply "rdfs" inferencing to the ontology graph, but the data graph will still have no inferencing applied. If the --inference flag is provided, it will apply to both the ontology graph, and the data graph.',
192192
)
193193
parser.add_argument(
194194
"-m",

0 commit comments

Comments
 (0)