(self, x)
| 1423 | return super().__call__(x) |
| 1424 | |
| 1425 | def _format_non_nat(self, x): |
| 1426 | datetime_str = datetime_as_string(x, |
| 1427 | unit=self.unit, |
| 1428 | timezone=self.timezone, |
| 1429 | casting=self.casting) |
| 1430 | return f"'{datetime_str}'" |
| 1431 | |
| 1432 | |
| 1433 | class TimedeltaFormat(_TimelikeFormat): |
no test coverage detected