(self, x)
| 1418 | super().__init__(x) |
| 1419 | |
| 1420 | def __call__(self, x): |
| 1421 | if self.legacy <= 113: |
| 1422 | return self._format_non_nat(x) |
| 1423 | return super().__call__(x) |
| 1424 | |
| 1425 | def _format_non_nat(self, x): |
| 1426 | datetime_str = datetime_as_string(x, |
nothing calls this directly
no test coverage detected