From 43a2155af1a017a85e924406492b67cb98613eb7 Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Tue, 19 Mar 2024 16:39:43 +0300 Subject: Fix typo. Signed-off-by: Munyoki Kilyungi --- gn_auth/auth/authorisation/data/genotypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gn_auth') 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()) -- cgit v1.2.3