Add `func` to the internal queue.
(self, func, *args)
| 400 | self.hide_sector(sector) |
| 401 | |
| 402 | def _enqueue(self, func, *args): |
| 403 | """ Add `func` to the internal queue. |
| 404 | |
| 405 | """ |
| 406 | self.queue.append((func, args)) |
| 407 | |
| 408 | def _dequeue(self): |
| 409 | """ Pop the top function from the internal queue and call it. |
no outgoing calls
no test coverage detected