diff options
author | Frederick Muriuki Muriithi | 2025-07-14 12:57:50 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-07-14 13:26:55 -0500 |
commit | d9f20d57f2121833f2e8910ad5f40943f564297a (patch) | |
tree | 9dd3e0edf37a86ac32a5490be0e8c4236950f5a4 /uploader/phenotypes/models.py | |
parent | d54b00a0901cd5ff8b9f7c5588c3d47dcda80966 (diff) | |
download | gn-uploader-d9f20d57f2121833f2e8910ad5f40943f564297a.tar.gz |
Fix imports
Remove unused imports, update old imports to newer forms and add
missing imports.
Diffstat (limited to 'uploader/phenotypes/models.py')
-rw-r--r-- | uploader/phenotypes/models.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/uploader/phenotypes/models.py b/uploader/phenotypes/models.py index ed14993..4a1b2d5 100644 --- a/uploader/phenotypes/models.py +++ b/uploader/phenotypes/models.py @@ -9,9 +9,10 @@ from typing import Optional, Iterable import MySQLdb as mdb from MySQLdb.cursors import Cursor, DictCursor -from functional_tools import take from gn_libs.mysqldb import debug_query +from functional_tools import take + logger = logging.getLogger(__name__) |