diff options
-rw-r--r-- | wqflask/wqflask/correlation/pre_computes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/correlation/pre_computes.py b/wqflask/wqflask/correlation/pre_computes.py index d0caca60..55f25f0b 100644 --- a/wqflask/wqflask/correlation/pre_computes.py +++ b/wqflask/wqflask/correlation/pre_computes.py @@ -15,7 +15,7 @@ def generate_filename(**kwargs): target_dataset_timestamp = kwargs["target_timestamp"] string_unicode = f"{base_dataset_name}{target_dataset_name}{base_timestamp}{target_dataset_timestamp}sample_corr_compute".encode() - hashlib.md5(string_unicode).hexdigest() + return hashlib.md5(string_unicode).hexdigest() def cache_compute_results(start_vars, |