(self, now: float = 1000.0)
| 1345 | |
| 1346 | class FakeClock: |
| 1347 | def __init__(self, now: float = 1000.0) -> None: |
| 1348 | self.now = now |
| 1349 | |
| 1350 | def __call__(self) -> float: |
| 1351 | return self.now |
nothing calls this directly
no outgoing calls
no test coverage detected