The seconds of the datetime
(self)
| 435 | |
| 436 | @property |
| 437 | def second(self) -> T_DataArray: |
| 438 | """The seconds of the datetime""" |
| 439 | return self._date_field("second", np.int64) |
| 440 | |
| 441 | @property |
| 442 | def microsecond(self) -> T_DataArray: |
nothing calls this directly
no test coverage detected