MCPcopy Create free account
hub / github.com/hynek/structlog / unbind

Method unbind

src/structlog/stdlib.py:635–643  ·  view source on GitHub ↗
(self, *keys: str)

Source from the content-addressed store, hash-verified

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__(

Callers

nothing calls this directly

Calls 1

unbindMethod · 0.45

Tested by

no test coverage detected