Return True if we are tired of trying this attempt. Meh.
(self, now: float)
| 225 | self.delay = max(0.0, self.give_up_at - now) |
| 226 | |
| 227 | def time_to_give_up(self, now: float) -> bool: |
| 228 | """Return True if we are tired of trying this attempt. Meh.""" |
| 229 | return self.give_up_at > 0.0 and now >= self.give_up_at |
no outgoing calls
no test coverage detected