Skip to content

Commit 3b2fc9a

Browse files
committed
chore: use keyword-arg in super to ease future refactoring
1 parent dd58bb5 commit 3b2fc9a

File tree

1 file changed

+8
-8
lines changed
  • aws_lambda_powertools/logging/formatters

1 file changed

+8
-8
lines changed

aws_lambda_powertools/logging/formatters/datadog.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ def __init__(
6565
Key-value to persist in all log messages
6666
"""
6767
super().__init__(
68-
json_serializer,
69-
json_deserializer,
70-
json_default,
71-
datefmt,
72-
use_datetime_directive,
73-
log_record_order,
74-
utc,
75-
use_rfc3339,
68+
json_serializer=json_serializer,
69+
json_deserializer=json_deserializer,
70+
json_default=json_default,
71+
datefmt=datefmt,
72+
use_datetime_directive=use_datetime_directive,
73+
log_record_order=log_record_order,
74+
utc=utc,
75+
use_rfc3339=use_rfc3339,
7676
**kwargs,
7777
)

0 commit comments

Comments
 (0)