about summary refs log tree commit diff
path: root/gn3/db
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/db')
-rw-r--r--gn3/db/sample_data.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/gn3/db/sample_data.py b/gn3/db/sample_data.py
index 7aacdc1..af6452a 100644
--- a/gn3/db/sample_data.py
+++ b/gn3/db/sample_data.py
@@ -254,9 +254,6 @@ def insert_sample_data(conn: Any,  # pylint: disable=[R0913]
                 "PublishSE": "(StrainId, DataId, error)",
                 "NStrain": "(StrainId, DataId, count)",
             }
-            _query = (f"INSERT INTO {table} "
-                      f"{_map.get(table)} "
-                      f"VALUES %s %s %s")
             with conn.cursor() as cursor:
                 cursor.execute(
                     "SELECT Id FROM PublishData where Id = %s "