diff --git a/src/structlog/_base.py b/src/structlog/_base.py index 93845e65..79db8551 100644 --- a/src/structlog/_base.py +++ b/src/structlog/_base.py @@ -166,7 +166,7 @@ def _process_event( # We're typing it as Any, because processors can return more than an # EventDict. event_dict: Any = self._context.copy() - event_dict.update(**event_kw) + event_dict.update(event_kw) if event is not None: event_dict["event"] = event