(self, *keys: str)
| 643 | ) |
| 644 | |
| 645 | def try_unbind(self, *keys: str) -> Self: |
| 646 | return self.__class__( |
| 647 | # c.f. comment in bind |
| 648 | logger=None, # type: ignore[arg-type] |
| 649 | processors=(), |
| 650 | context={}, |
| 651 | _sync_bl=self.sync_bl.try_unbind(*keys), |
| 652 | _loop=self._loop, |
| 653 | ) |
| 654 | |
| 655 | async def _dispatch_to_sync( |
| 656 | self, |
nothing calls this directly
no test coverage detected