Skip to content

Commit ced67c4

Browse files
Update checksum_tools.py
1 parent b799917 commit ced67c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

glueops/checksum_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ def compute_sha224(input_string: str) -> str:
1616
"""Compute SHA224 checksum for a given string and return it in hexadecimal format."""
1717

1818
sha224_hash = hashlib.sha224()
19-
sha224_hash.update(text.encode('utf-8'))
19+
sha224_hash.update(input_string.encode('utf-8'))
2020
return sha224_hash.hexdigest()

0 commit comments

Comments
 (0)