(self, x)
| 1327 | return super().__call__(x) |
| 1328 | |
| 1329 | def _format_non_nat(self, x): |
| 1330 | return "'%s'" % datetime_as_string(x, |
| 1331 | unit=self.unit, |
| 1332 | timezone=self.timezone, |
| 1333 | casting=self.casting) |
| 1334 | |
| 1335 | |
| 1336 | class TimedeltaFormat(_TimelikeFormat): |
no test coverage detected