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
- For options `like-this`, `argparse` stores the variable name
`like_this`. Remove redundant `dest` parameters in the build script.
- For options marked as "store", `argparse` stores `None` when the
option is not specified. Remove redudnant `default=None` parameters
in the build script.
- For options marked as "store_true", the default value is `False`.
Remove redundant `default=True` parameters in the build script.
- The default action for options is "store". Remove redundant
`action="store"` parameters in the build script.
0 commit comments