(self, approvals: Iterable[str])
| 48 | self._collections.update(collections) |
| 49 | |
| 50 | def add_approvals(self, approvals: Iterable[str]) -> None: |
| 51 | if self._full_rebuild: |
| 52 | return |
| 53 | if self._approvals is None: |
| 54 | self._approvals = set() |
| 55 | self._approvals.update(approvals) |
| 56 | |
| 57 | @property |
| 58 | def agents(self) -> Optional[Iterable[str]]: |