diff options
author | Frederick Muriuki Muriithi | 2022-08-04 04:58:54 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-08-04 04:58:54 +0300 |
commit | 95588719a261f39897783ce4031c083b9f5e796b (patch) | |
tree | be24360788f329c047794f5cb9cb12a2736d3fab /qc_app/dbinsert.py | |
parent | f895288441953ea1f52095ff421429d377cd37a1 (diff) | |
download | gn-uploader-95588719a261f39897783ce4031c083b9f5e796b.tar.gz |
Fix typo: 'species' -> 'speciesid'
Diffstat (limited to 'qc_app/dbinsert.py')
-rw-r--r-- | qc_app/dbinsert.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qc_app/dbinsert.py b/qc_app/dbinsert.py index eee7a56..0b87c20 100644 --- a/qc_app/dbinsert.py +++ b/qc_app/dbinsert.py @@ -60,7 +60,7 @@ def genechips(): speciesid = chip["SpeciesId"] if acc.get(speciesid) is None: return {**acc, speciesid: (chip,)} - return {**acc, species: acc[speciesid] + (chip,)} + return {**acc, speciesid: acc[speciesid] + (chip,)} with database_connection() as conn: with conn.cursor(cursorclass=DictCursor) as cursor: |