(self, fmt: str, auto_indent: Union[int, str, bool, None])
| 115 | """ |
| 116 | |
| 117 | def __init__(self, fmt: str, auto_indent: Union[int, str, bool, None]) -> None: |
| 118 | super().__init__(fmt) |
| 119 | self._auto_indent = self._get_auto_indent(auto_indent) |
| 120 | |
| 121 | @staticmethod |
| 122 | def _get_auto_indent(auto_indent_option: Union[int, str, bool, None]) -> int: |
nothing calls this directly
no test coverage detected