Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions diffly/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def main(
),
),
] = False,
hidden_columns: Annotated[
hidden_column: Annotated[
list[str],
typer.Option(
help=(
Expand All @@ -147,7 +147,7 @@ def main(
left_name=left_name,
right_name=right_name,
slim=slim,
hidden_columns=hidden_columns,
hidden_columns=hidden_column,
)
if output_json:
typer.echo(summary.to_json())
Expand Down
Loading