Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tedivm committed Jun 9, 2024
1 parent 9ff51a1 commit 8353a7a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions paracelsus/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ def graph(
] = [],
format: Annotated[
Formats, typer.Option(help="The file format to output the generated graph to.")
] = Formats.mermaid.value, # type: ignore # Typer will fail to render the help message, but this code works.
] = Formats.mermaid.value, # type: ignore # Typer will fail to render the help message, but this code works.
column_sort: Annotated[
ColumnSorts,
typer.Option(
help="Specifies the method of sorting columns in diagrams.",
),
] = SORT_DEFAULT, # type: ignore # Typer will fail to render the help message, but this code works.
] = SORT_DEFAULT, # type: ignore # Typer will fail to render the help message, but this code works.
):
settings = get_pyproject_settings()
base_class = get_base_class(base_class_path, settings)
Expand Down Expand Up @@ -152,7 +152,7 @@ def inject(
] = [],
format: Annotated[
Formats, typer.Option(help="The file format to output the generated graph to.")
] = Formats.mermaid.value, # type: ignore # Typer will fail to render the help message, but this code works.
] = Formats.mermaid.value, # type: ignore # Typer will fail to render the help message, but this code works.
check: Annotated[
bool,
typer.Option(
Expand All @@ -165,7 +165,7 @@ def inject(
typer.Option(
help="Specifies the method of sorting columns in diagrams.",
),
] = SORT_DEFAULT, # type: ignore # Typer will fail to render the help message, but this code works.
] = SORT_DEFAULT, # type: ignore # Typer will fail to render the help message, but this code works.
):
settings = get_pyproject_settings()
if "imports" in settings:
Expand Down

0 comments on commit 8353a7a

Please sign in to comment.