Skip to content

Commit

Permalink
fix: Do not show defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
robvanderleek committed Feb 24, 2024
1 parent d13be41 commit 1af54de
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions codelimit/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,15 @@ def scan(
@cli.command(help="Upload report to Code Limit")
def upload(
repository: Annotated[
str, typer.Argument(envvar="GITHUB_REPOSITORY", help="GitHub repository")
str,
typer.Argument(
envvar="GITHUB_REPOSITORY", show_default=False, help="GitHub repository"
),
],
branch: Annotated[
str,
typer.Argument(envvar="GITHUB_REF", show_default=False, help="GitHub branch"),
],
branch: Annotated[str, typer.Argument(envvar="GITHUB_REF", help="GitHub branch")],
report_file: Path = typer.Option(
None,
"--report",
Expand Down

0 comments on commit 1af54de

Please sign in to comment.