Method
__init__
(self,
option_strings,
dest,
default=False,
required=False,
help=None)
Source from the content-addressed store, hash-verified
| 883 | class _StoreTrueAction(_StoreConstAction): |
| 884 | |
| 885 | def __init__(self, |
| 886 | option_strings, |
| 887 | dest, |
| 888 | default=False, |
| 889 | required=False, |
| 890 | help=None): |
| 891 | super(_StoreTrueAction, self).__init__( |
| 892 | option_strings=option_strings, |
| 893 | dest=dest, |
| 894 | const=True, |
| 895 | default=default, |
| 896 | required=required, |
| 897 | help=help) |
| 898 | |
| 899 | |
| 900 | class _StoreFalseAction(_StoreConstAction): |
Callers
nothing calls this directly
Tested by
no test coverage detected