Skip to content

Commit

Permalink
archive-extra-metadata can be empty
Browse files Browse the repository at this point in the history
  • Loading branch information
gmertes committed Jul 23, 2024
1 parent 217b86c commit 8423068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/anemoi/registry/commands/experiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def add_arguments(self, command_parser):
"--run-number", help="The run number of the experiment. Relevant --set-archive and --get-archive."
)
command_parser.add_argument(
"--archive-extra-metadata", help="Extra metadata. A list of key=value pairs.", nargs="+"
"--archive-extra-metadata", help="Extra metadata. A list of key=value pairs.", nargs="+", default={}
)

command_parser.add_argument("--overwrite", help="Overwrite if already exists.", action="store_true")
Expand Down

0 comments on commit 8423068

Please sign in to comment.