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
I have a function definition with a parameter of type typing.List[str]. I'd like for this to be handled in the CLI as an argument that supports multiple entries either --foo arg1 arg2 arg3 or preferably --foo arg1 --foo arg2 --foo arg3. Is this possible with Clize? If so, what's the best way to accomplish this?
The text was updated successfully, but these errors were encountered:
I have a function definition with a parameter of type
typing.List[str]
. I'd like for this to be handled in the CLI as an argument that supports multiple entries either--foo arg1 arg2 arg3
or preferably--foo arg1 --foo arg2 --foo arg3
. Is this possible with Clize? If so, what's the best way to accomplish this?The text was updated successfully, but these errors were encountered: