diff options
Diffstat (limited to 'gn3/computations/gemma.py')
-rw-r--r-- | gn3/computations/gemma.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gn3/computations/gemma.py b/gn3/computations/gemma.py index 577d8e8..6c53ecc 100644 --- a/gn3/computations/gemma.py +++ b/gn3/computations/gemma.py @@ -1,14 +1,12 @@ """Procedures related gemma computations""" -import errno import os from base64 import b64encode from hashlib import md5 from typing import Optional, Dict from typing import List -from typing import ValuesView from gn3.commands import compose_gemma_cmd -from gn3.fs_helpers import get_hash_of_files, assert_paths_exist +from gn3.fs_helpers import get_hash_of_files def generate_hash_of_string(unhashed_str: str) -> str: |