Fix default context value

This commit is contained in:
Andras Schmelczer 2022-07-29 10:52:23 +02:00
parent 85d079fab8
commit 4d55499548
No known key found for this signature in database
GPG key ID: 0EA1BC97D0AB076E

View file

@ -100,5 +100,5 @@ class TracingContext(Generic[T]):
_current_tracing_context: ContextVar[Optional[TracingContext]] = ContextVar(
"_current_tracing_context"
"_current_tracing_context", default=None
)