(self, *keys: str)
| 633 | ) |
| 634 | |
| 635 | def unbind(self, *keys: str) -> Self: |
| 636 | return self.__class__( |
| 637 | # c.f. comment in bind |
| 638 | logger=None, # type: ignore[arg-type] |
| 639 | processors=(), |
| 640 | context={}, |
| 641 | _sync_bl=self.sync_bl.unbind(*keys), |
| 642 | _loop=self._loop, |
| 643 | ) |
| 644 | |
| 645 | def try_unbind(self, *keys: str) -> Self: |
| 646 | return self.__class__( |