about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn3/auth/authorisation/data/phenotypes.py2
-rw-r--r--scripts/search_phenotypes.py1
2 files changed, 1 insertions, 2 deletions
diff --git a/gn3/auth/authorisation/data/phenotypes.py b/gn3/auth/authorisation/data/phenotypes.py
index db16699..a330d4a 100644
--- a/gn3/auth/authorisation/data/phenotypes.py
+++ b/gn3/auth/authorisation/data/phenotypes.py
@@ -18,7 +18,7 @@ def linked_phenotype_data(
         linked = tuple(tuple(row[key] for key in authkeys)
                        for row in authcursor.fetchall())
         if len(linked) <= 0:
-            return (item for item in tuple())
+            return iter(())
         paramstr = "".join(["(%s, %s, %s, %s)"] * len(linked))
         query = (
             "SELECT spc.SpeciesId, spc.SpeciesName, iset.InbredSetId, "
diff --git a/scripts/search_phenotypes.py b/scripts/search_phenotypes.py
index 2f7fcf3..1bab41c 100644
--- a/scripts/search_phenotypes.py
+++ b/scripts/search_phenotypes.py
@@ -11,7 +11,6 @@ from datetime import datetime, timedelta
 import click
 import redis
 import requests
-from MySQLdb.cursors import DictCursor
 
 from gn3 import jobs
 from gn3.auth import db as authdb