Skip to content

Commit 9f9c0f1

Browse files
Clement Fauchereclaude
authored andcommitted
fix: ruff format _base_service.py
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 42fe785 commit 9f9c0f1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/uipath-platform/src/uipath/platform/common/_base_service.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@ def _inject_trace_context(headers: dict[str, str]) -> None:
7171
span = trace.get_current_span()
7272
ctx = span.get_span_context()
7373
if ctx.trace_id and ctx.span_id:
74-
headers[_TRACE_PARENT_HEADER] = f"00-{format_trace_id(ctx.trace_id)}-{format_span_id(ctx.span_id)}-01"
74+
headers[_TRACE_PARENT_HEADER] = (
75+
f"00-{format_trace_id(ctx.trace_id)}-{format_span_id(ctx.span_id)}-01"
76+
)
7577

7678

7779
class BaseService:

0 commit comments

Comments
 (0)