Skip to content

Commit fec6b64

Browse files
fix(idempotency): fix ruff formatting - remove trailing whitespace in base.py
Remove trailing whitespace on blank line between is_missing_idempotency_key and _get_hashed_payload methods to pass ruff format check. Part of #8090 Signed-off-by: hirenkumar-n-dholariya <hirenkumarnd@gmail.com>
1 parent 01f565a commit fec6b64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • aws_lambda_powertools/utilities/idempotency/persistence

aws_lambda_powertools/utilities/idempotency/persistence/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def is_missing_idempotency_key(data) -> bool:
136136
elif isinstance(data, (int, float, bool)):
137137
return False
138138
return not data
139-
139+
140140
def _get_hashed_payload(self, data: dict[str, Any]) -> str:
141141
"""
142142
Extract payload using validation key jmespath and return a hashed representation

0 commit comments

Comments
 (0)