aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/auth/authorisation
diff options
context:
space:
mode:
authorMunyoki Kilyungi2024-03-19 16:39:43 +0300
committerMunyoki Kilyungi2024-03-21 10:03:47 +0300
commit43a2155af1a017a85e924406492b67cb98613eb7 (patch)
tree200302d2a413ec062cb59cf25d152f1adc9a65d3 /gn_auth/auth/authorisation
parentfbdb9b66f078122af144dabc407e4dabf3fb6483 (diff)
downloadgn-auth-43a2155af1a017a85e924406492b67cb98613eb7.tar.gz
Fix typo.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn_auth/auth/authorisation')
-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())