Method
__init__
(self,
option_strings,
dest,
default=True,
required=False,
help=None)
Source from the content-addressed store, hash-verified
| 1002 | class _StoreFalseAction(_StoreConstAction): |
| 1003 | |
| 1004 | def __init__(self, |
| 1005 | option_strings, |
| 1006 | dest, |
| 1007 | default=True, |
| 1008 | required=False, |
| 1009 | help=None): |
| 1010 | super(_StoreFalseAction, self).__init__( |
| 1011 | option_strings=option_strings, |
| 1012 | dest=dest, |
| 1013 | const=False, |
| 1014 | default=default, |
| 1015 | required=required, |
| 1016 | help=help) |
| 1017 | |
| 1018 | |
| 1019 | class _AppendAction(Action): |
Callers
nothing calls this directly
Tested by
no test coverage detected