Skip to content

Commit ea06b93

Browse files
committed
Linting fix
1 parent 25da38d commit ea06b93

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

azure_functions_worker/dispatcher.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
PYTHON_SCRIPT_FILE_NAME,
3232
PYTHON_SCRIPT_FILE_NAME_DEFAULT,
3333
PYTHON_LANGUAGE_RUNTIME, PYTHON_ENABLE_INIT_INDEXING,
34-
METADATA_PROPERTIES_WORKER_INDEXED, TRACEPARENT, TRACESTATE)
34+
METADATA_PROPERTIES_WORKER_INDEXED, TRACEPARENT,
35+
TRACESTATE)
3536
from .extension import ExtensionManager
3637
from .logging import disable_console_logging, enable_console_logging
3738
from .logging import (logger, error_logger, is_system_log_category,
@@ -313,9 +314,10 @@ async def _handle__worker_init_request(self, request):
313314
self.update_opentelemetry_status()
314315

315316
if self.otel_libs_available:
316-
# When this capability is enabled, logs are not piped back to the host from
317-
# the worker. Logs will directly go to where the user has configured the
318-
# logs to go. This is to ensure that the logs are not duplicated.
317+
# When this capability is enabled, logs are not piped back to the
318+
# host from the worker. Logs will directly go to where the user has
319+
# configured them to go. This is to ensure that the logs are not
320+
# duplicated.
319321
capabilities["WorkerOpenTelemetryEnabled"] = _TRUE
320322

321323
if DependencyManager.should_load_cx_dependencies():

0 commit comments

Comments
 (0)