Skip to content
Merged
Changes from all commits
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
7 changes: 5 additions & 2 deletions src/anemoi/utils/commands/transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,15 @@ def add_arguments(self, command_parser: ArgumentParser) -> None:
action="store_true",
help="If the data is already on S3 it will not be uploaded, unless the remote file has a different size.",
)
command_parser.add_argument("--verbosity", default=1, help="The level of verbosity, by default 1.")
command_parser.add_argument("--verbosity", type=int, default=1, help="The level of verbosity, by default 1.")
command_parser.add_argument(
"--progress", default=None, help="A callable that will be called with the number of files."
)
command_parser.add_argument(
"--threads", default=1, help="The number of threads to use when uploading a directory, by default 1."
"--threads",
type=int,
default=1,
help="The number of threads to use when uploading a directory, by default 1.",
)

def run(self, args: Namespace) -> None:
Expand Down
Loading