You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using an explicity-defined cli opt, argparse replaces - with _ by default. We are also accepting arbitrary cli opts into the extra_arguments list, which argparse does not munge. For the user, this means currently they would need to do this:
watchmaker --content_source <url.zip>
which doesn't match the structure of every other cli opt. Instead, we should munge extra_arguments to support the same structure as regular cli opts:
watchmaker --content-source <url.zip>
The text was updated successfully, but these errors were encountered:
When using an explicity-defined cli opt, argparse replaces
-
with_
by default. We are also accepting arbitrary cli opts into theextra_arguments
list, which argparse does not munge. For the user, this means currently they would need to do this:which doesn't match the structure of every other cli opt. Instead, we should munge
extra_arguments
to support the same structure as regular cli opts:The text was updated successfully, but these errors were encountered: