From 95588719a261f39897783ce4031c083b9f5e796b Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 4 Aug 2022 04:58:54 +0300 Subject: Fix typo: 'species' -> 'speciesid' --- qc_app/dbinsert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qc_app') 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: -- cgit v1.2.3