Skip to content

Commit

Permalink
Add rdf options section
Browse files Browse the repository at this point in the history
  • Loading branch information
simonharrer committed Mar 13, 2024
1 parent 54f3af9 commit 1c1becc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datacontract/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class ExportFormat(str, Enum):
def export(
format: Annotated[ExportFormat, typer.Option(help="The export format.")],
server: Annotated[str, typer.Option(help="The server name to export.")] = None,
rdf_base: Annotated[Optional[str], typer.Option(help="[rdf] The base URI used to generate the RDF graph.")] = None,
rdf_base: Annotated[Optional[str], typer.Option(help="[rdf] The base URI used to generate the RDF graph.", rich_help_panel="RDF Options")] = None,
location: Annotated[
str, typer.Argument(help="The location (url or path) of the data contract yaml.")] = "datacontract.yaml",
):
Expand Down

0 comments on commit 1c1becc

Please sign in to comment.