diff options
author | Frederick Muriuki Muriithi | 2025-06-02 12:30:30 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-06-02 12:32:10 -0500 |
commit | 5f33d1046569ede201711f65970d658db8a148b8 (patch) | |
tree | 314d2348ee338f3cf67ea3897e7a90accaf04fc4 | |
parent | b61a06334cb69a7b0a0f2b5d45c5ebee2688c47e (diff) | |
download | gn-uploader-5f33d1046569ede201711f65970d658db8a148b8.tar.gz |
Add missing import.
-rw-r--r-- | scripts/load_phenotypes_to_db.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/load_phenotypes_to_db.py b/scripts/load_phenotypes_to_db.py index 52042aa..cd46b01 100644 --- a/scripts/load_phenotypes_to_db.py +++ b/scripts/load_phenotypes_to_db.py @@ -4,8 +4,8 @@ import logging import argparse from pathlib import Path from zipfile import ZipFile -from functools import partial from typing import Any, Union +from functools import reduce, partial from MySQLdb.cursors import Cursor, DictCursor |