Skip to content
Snippets Groups Projects
Commit 6aa31489 authored by julie.mlls's avatar julie.mlls
Browse files

checksum reduced to 16 characters

parent 0cd89fa4
No related branches found
No related tags found
No related merge requests found
......@@ -170,7 +170,7 @@ class TimeSeriesCompil:
if not data:
break
sha256_hash.update(data)
checksum = sha256_hash.hexdigest()
checksum = sha256_hash.hexdigest()[:16]
return checksum
def extract_data(self,getstat: bool = True, force: bool=False):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment