(self)
| 218 | |
| 219 | @property |
| 220 | def invert(self) -> bool: |
| 221 | if self._invert is None: |
| 222 | self._invert = self.total_seconds() < 0 |
| 223 | |
| 224 | return self._invert |
| 225 | |
| 226 | def in_weeks(self) -> int: |
| 227 | return int(self.total_weeks()) |
nothing calls this directly
no test coverage detected