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
It looks like argparse is being used in individual actions which is then called from bin/hc where a top-level command (i.e., hc) implements arg parsing manually. We could perhaps use add_subparsers in the entrypoint script to leverage built-in capabilities on the standard argument parser package. We have used this technique in some of the other WSDL projects.
The text was updated successfully, but these errors were encountered:
It looks like
argparse
is being used in individual actions which is then called frombin/hc
where a top-level command (i.e.,hc
) implements arg parsing manually. We could perhaps useadd_subparsers
in the entrypoint script to leverage built-in capabilities on the standard argument parser package. We have used this technique in some of the other WSDL projects.The text was updated successfully, but these errors were encountered: