Method
__init__
(self,
option_strings,
dest,
default=True,
required=False,
help=None)
Source from the content-addressed store, hash-verified
| 900 | class _StoreFalseAction(_StoreConstAction): |
| 901 | |
| 902 | def __init__(self, |
| 903 | option_strings, |
| 904 | dest, |
| 905 | default=True, |
| 906 | required=False, |
| 907 | help=None): |
| 908 | super(_StoreFalseAction, self).__init__( |
| 909 | option_strings=option_strings, |
| 910 | dest=dest, |
| 911 | const=False, |
| 912 | default=default, |
| 913 | required=required, |
| 914 | help=help) |
| 915 | |
| 916 | |
| 917 | class _AppendAction(Action): |
Callers
nothing calls this directly
Tested by
no test coverage detected