Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
YevheniiSemendiak committed Feb 14, 2024
1 parent ece01a7 commit 63aec53
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wabucketref/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from . import WaBucketRefAPI, __version__, parse_meta


@click.group() # type: ignore[arg-type]
@click.group()
@click.version_option(
version=__version__, message="W&B bucket artifacts package version: %(version)s"
)
Expand Down Expand Up @@ -83,7 +83,7 @@ def main(
ctx.call_on_close(api.close)


@main.command() # type: ignore
@main.command()
@click.argument("src_dir")
@click.option(
"-n",
Expand Down Expand Up @@ -174,7 +174,7 @@ def upload(
)


@main.command() # type: ignore
@main.command()
@click.argument("artifact_type")
@click.argument("artifact_name")
@click.argument("artifact_alias")
Expand Down Expand Up @@ -227,7 +227,7 @@ def download(
)


@main.command() # type: ignore
@main.command()
@click.argument("bucket_path")
@click.option(
"-n",
Expand Down

0 comments on commit 63aec53

Please sign in to comment.