Skip to content

Commit a90fc76

Browse files
committed
fix lint
1 parent 7c85e3d commit a90fc76

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

datadog_lambda/tracing.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -385,11 +385,12 @@ def _parse_high_64_bits(trace_tags: str) -> str:
385385

386386
def _generate_sfn_parent_id(context: dict) -> int:
387387
"""
388-
Generates a stable parent span ID for a downstream Lambda invoked by a Step Function. The upstream Step Function
389-
execution context is used to infer the parent's span ID, ensuring trace continuity.
388+
Generates a stable parent span ID for a downstream Lambda invoked by a Step Function. The
389+
upstream Step Function execution context is used to infer the parent's span ID, ensuring trace
390+
continuity.
390391
391-
`RetryCount` and `RedriveCount` are appended only when nonzero to maintain compatibility with older Lambda
392-
layers that did not include these fields
392+
`RetryCount` and `RedriveCount` are appended only when nonzero to maintain compatibility with
393+
older Lambda layers that did not include these fields
393394
"""
394395
execution_id = context.get("Execution").get("Id")
395396
retry_count = context.get("Execution").get("RetryCount", 0)

0 commit comments

Comments
 (0)