(self)
| 620 | # -- Constructor validation methods -------------------------------- |
| 621 | |
| 622 | def _check_action(self): |
| 623 | if self.action is None: |
| 624 | self.action = "store" |
| 625 | elif self.action not in self.ACTIONS: |
| 626 | raise OptionError("invalid action: %r" % self.action, self) |
| 627 | |
| 628 | def _check_type(self): |
| 629 | if self.type is None: |
nothing calls this directly
no test coverage detected