about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn_auth/auth/authorisation/data/genotypes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_auth/auth/authorisation/data/genotypes.py b/gn_auth/auth/authorisation/data/genotypes.py
index bde045b..bdab8fa 100644
--- a/gn_auth/auth/authorisation/data/genotypes.py
+++ b/gn_auth/auth/authorisation/data/genotypes.py
@@ -12,7 +12,7 @@ from gn_auth.auth.authorisation.checks import authorised_p
 from gn_auth.auth.authorisation.resources.groups.models import Group
 
 def linked_genotype_data(conn: authdb.DbConnection) -> Iterable[dict]:
-    """Retrive genotype data that is linked to user groups."""
+    """Retrieve genotype data that is linked to user groups."""
     with authdb.cursor(conn) as cursor:
         cursor.execute("SELECT * FROM linked_genotype_data")
         return (dict(row) for row in cursor.fetchall())