(self, *args: str, **kwargs: Any)
| 70 | exit_code = ExitCode.EXPECTED_EXIT |
| 71 | |
| 72 | def __init__(self, *args: str, **kwargs: Any) -> None: |
| 73 | kwargs["output_method"] = kwargs.get("output_method") or out.write |
| 74 | super().__init__(*args, **kwargs) |
| 75 | |
| 76 | |
| 77 | class DryRunExit(ExpectedExit): |