Skip to content

Commit 0076581

Browse files
committed
lint
1 parent bec850f commit 0076581

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

datadog_lambda/tracing.py

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

386386
def _generate_sfn_parent_id(context: dict) -> int:
387387
"""
388-
The upstream Step Function can propagate its execution context to downstream Lambdas. The Lambda can use these
389-
details to share the same traceID and infer its parent's spanID.
388+
The upstream Step Function can propagate its execution context to downstream Lambdas. The
389+
Lambda can use these details to share the same traceID and infer its parent's spanID.
390390
391-
Excluding redriveCount when its 0 to account for cases where customers are using an old version of the Lambda layer
392-
that doesn't use this value for its parentID generation.
391+
Excluding redriveCount when its 0 to account for cases where customers are using an old
392+
version of the Lambda layer that doesn't use this value for its parentID generation.
393393
"""
394394
execution_id = context.get("Execution").get("Id")
395395
redrive_count = context.get("Execution").get("RedriveCount")

0 commit comments

Comments
 (0)