Method
__init__
(self,
option_strings,
dest,
default=False,
required=False,
help=None)
Source from the content-addressed store, hash-verified
| 985 | class _StoreTrueAction(_StoreConstAction): |
| 986 | |
| 987 | def __init__(self, |
| 988 | option_strings, |
| 989 | dest, |
| 990 | default=False, |
| 991 | required=False, |
| 992 | help=None): |
| 993 | super(_StoreTrueAction, self).__init__( |
| 994 | option_strings=option_strings, |
| 995 | dest=dest, |
| 996 | const=True, |
| 997 | default=default, |
| 998 | required=required, |
| 999 | help=help) |
| 1000 | |
| 1001 | |
| 1002 | class _StoreFalseAction(_StoreConstAction): |
Callers
nothing calls this directly
Tested by
no test coverage detected