Skip to content

Commit

Permalink
Fix doc reference targets
Browse files Browse the repository at this point in the history
  • Loading branch information
mgberg committed Jan 31, 2024
1 parent 2b3be61 commit 61585b5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions rdflib/extras/shacl.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ def parse_shacl_path(
) -> Union[URIRef, Path]:
"""
Parse a valid SHACL path (e.g. the object of a triple with predicate sh:path)
from a :class:`Graph` as a :class:`URIRef` if the path is simply a predicate
or a :class:`Path` otherwise.
from a :class:`~rdflib.graph.Graph` as a :class:`~rdflib.term.URIRef` if the path
is simply a predicate or a :class:`~rdflib.path.Path` otherwise.
:param shapes_graph: A :class:`Graph` containing the path to be parsed
:param path_identifier: A :class:`URIRef` or A :class:`BNode` of the path
:return: A :class:`URIRef` or a :class:`Path` representing the SHACL Path
:param shapes_graph: A :class:`~rdflib.graph.Graph` containing the path to be parsed
:param path_identifier: A :class:`~rdflib.term.Node` of the path
:return: A :class:`~rdflib.term.URIRef` or a :class:`~rdflib.path.Path`
"""
path: Optional[Union[URIRef, Path]] = None

Expand Down

0 comments on commit 61585b5

Please sign in to comment.