Skip to content

Commit 0fc80ce

Browse files
author
Michael Brewer
committed
fix: correct line indents
1 parent 8938148 commit 0fc80ce

File tree

1 file changed

+1
-1
lines changed
  • aws_lambda_powertools/utilities/idempotency/persistence

1 file changed

+1
-1
lines changed

aws_lambda_powertools/utilities/idempotency/persistence/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def _generate_hash(self, data: Any) -> str:
224224
Hashed representation of the provided data
225225
226226
"""
227-
data = getattr(data, "raw_event", data) # could be a data class depending on decorator order
227+
data = getattr(data, "raw_event", data) # could be a data class depending on decorator order
228228
hashed_data = self.hash_function(json.dumps(data, cls=Encoder).encode())
229229
return hashed_data.hexdigest()
230230

0 commit comments

Comments
 (0)