Print the Epoch.
(self)
| 173 | return U.Duration(rhs._frame, days*86400 + sec) |
| 174 | |
| 175 | def __str__(self): |
| 176 | """Print the Epoch.""" |
| 177 | return f"{self.julianDate(self._frame):22.15e} {self._frame}" |
| 178 | |
| 179 | def __repr__(self): |
| 180 | """Print the Epoch.""" |
nothing calls this directly
no test coverage detected