Check if there are no items to process.
(self)
| 410 | return False |
| 411 | |
| 412 | def is_empty(self) -> bool: |
| 413 | """Check if there are no items to process.""" |
| 414 | return len(self.datas) == 0 |
| 415 | |
| 416 | def __call__(self): |
| 417 | if not self.datas: |
no outgoing calls