File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
aws_lambda_powertools/utilities Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -687,7 +687,7 @@ def session(self) -> List[ChallengeResult]:
687
687
@property
688
688
def client_metadata (self ) -> Optional [Dict [str , str ]]:
689
689
"""One or more key-value pairs that you can provide as custom input to the Lambda function that you
690
- specify for the create auth challenge trigger.. """
690
+ specify for the create auth challenge trigger."""
691
691
return self ["request" ].get ("clientMetadata" )
692
692
693
693
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ def get_header_value(
38
38
name_lower = name .lower ()
39
39
40
40
return next (
41
- # Iterate over the dict and do a case insensitive key comparison
41
+ # Iterate over the dict and do a case- insensitive key comparison
42
42
(value for key , value in headers .items () if key .lower () == name_lower ),
43
43
# Default value is returned if no matches was found
44
44
default_value ,
@@ -116,7 +116,7 @@ def get_header_value(
116
116
default_value: str, optional
117
117
Default value if no value was found by name
118
118
case_sensitive: bool
119
- Whether to use a case sensitive look up
119
+ Whether to use a case- sensitive look up
120
120
Returns
121
121
-------
122
122
str, optional
Original file line number Diff line number Diff line change @@ -47,5 +47,5 @@ class IdempotencyPersistenceLayerError(Exception):
47
47
48
48
class IdempotencyKeyError (Exception ):
49
49
"""
50
- Payload does not contain a idempotent key
50
+ Payload does not contain an idempotent key
51
51
"""
You can’t perform that action at this time.
0 commit comments