Return a new logger with *keys* removed from the context. Raises: KeyError: If the key is not part of the context.
(self, *keys: str)
| 183 | return super().bind(**new_values) |
| 184 | |
| 185 | def unbind(self, *keys: str) -> Self: |
| 186 | """ |
| 187 | Return a new logger with *keys* removed from the context. |
| 188 | |
| 189 | Raises: |
| 190 | KeyError: If the key is not part of the context. |
| 191 | """ |
| 192 | return super().unbind(*keys) |
| 193 | |
| 194 | def try_unbind(self, *keys: str) -> Self: |
| 195 | """ |
no outgoing calls