diff options
author | BonfaceKilz | 2021-05-11 17:00:26 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-05-13 11:18:57 +0300 |
commit | 378d0fc7f4ff5df5e8e77617c37bcef2b26ddf02 (patch) | |
tree | 59b6170f45c0857b0a7ba643e1746fdf5fc4c67a /gn3/api | |
parent | 53f27b547e7220d46bdc2e92debb38a8739e511c (diff) | |
download | genenetwork3-378d0fc7f4ff5df5e8e77617c37bcef2b26ddf02.tar.gz |
Rename file_utils to fs_helpers
Generally avoid naming things with a "utils" prefix/ suffix since it
encourages contributors to dump any new functions there; and over time, as the
code grows, things get messy...
Diffstat (limited to 'gn3/api')
-rw-r--r-- | gn3/api/gemma.py | 4 | ||||
-rw-r--r-- | gn3/api/general.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gn3/api/gemma.py b/gn3/api/gemma.py index 81e185d..6b0b20e 100644 --- a/gn3/api/gemma.py +++ b/gn3/api/gemma.py @@ -9,8 +9,8 @@ from flask import request from gn3.commands import queue_cmd from gn3.commands import run_cmd -from gn3.file_utils import cache_ipfs_file -from gn3.file_utils import jsonfile_to_dict +from gn3.fs_helpers import cache_ipfs_file +from gn3.fs_helpers import jsonfile_to_dict from gn3.computations.gemma import generate_gemma_cmd from gn3.computations.gemma import do_paths_exist diff --git a/gn3/api/general.py b/gn3/api/general.py index 38e6154..a9a8da2 100644 --- a/gn3/api/general.py +++ b/gn3/api/general.py @@ -5,7 +5,7 @@ from flask import current_app from flask import jsonify from flask import request -from gn3.file_utils import extract_uploaded_file +from gn3.fs_helpers import extract_uploaded_file general = Blueprint("general", __name__) |