(self, seconds: float)
| 80 | _current_time: float = datetime(2020, 5, 22, 14, 20, 50).timestamp() |
| 81 | |
| 82 | def sleep(self, seconds: float) -> None: |
| 83 | self._current_time += seconds |
| 84 | |
| 85 | def time(self) -> float: |
| 86 | return self._current_time |
no outgoing calls