(self)
| 43 | super().__init__(*args, **kwargs) |
| 44 | |
| 45 | def fix_defaults(self) -> None: |
| 46 | for action in self._actions: |
| 47 | self.fix_default(action) |
| 48 | |
| 49 | def fix_default(self, action: Action) -> None: |
| 50 | if hasattr(action, "default") and hasattr(action, "dest") and action.default != SUPPRESS: |