diff --git a/ddtrace/profiling/exporter/http.py b/ddtrace/profiling/exporter/http.py index 32dbd35bfc..ff0780d599 100644 --- a/ddtrace/profiling/exporter/http.py +++ b/ddtrace/profiling/exporter/http.py @@ -66,9 +66,9 @@ def __init__( self.version: typing.Optional[str] = version self.tags: typing.Dict[str, str] = tags if tags is not None else {} self.max_retry_delay: typing.Optional[float] = max_retry_delay - self.endpoint_call_counter_span_processor: typing.Optional[EndpointCallCounterProcessor] = ( - endpoint_call_counter_span_processor - ) + self.endpoint_call_counter_span_processor: typing.Optional[ + EndpointCallCounterProcessor + ] = endpoint_call_counter_span_processor self.__post_init__()