(self, fmt: str, auto_indent: int | str | bool | None)
| 145 | """ |
| 146 | |
| 147 | def __init__(self, fmt: str, auto_indent: int | str | bool | None) -> None: |
| 148 | super().__init__(fmt) |
| 149 | self._auto_indent = self._get_auto_indent(auto_indent) |
| 150 | |
| 151 | @staticmethod |
| 152 | def _get_auto_indent(auto_indent_option: int | str | bool | None) -> int: |
nothing calls this directly
no test coverage detected