(self)
| 92 | STOP = object() |
| 93 | |
| 94 | def __init__(self): |
| 95 | self.queue = AsyncQueue(desc="GitHub prefetch") |
| 96 | # Safety margin for API requests to leave in the rate limit |
| 97 | # There is usually more than one request required to load the github data |
| 98 | self.safety_buffer = 10 |
| 99 | |
| 100 | @property |
| 101 | def wait_time(self) -> float: |