diff options
author | Frederick Muriuki Muriithi | 2023-04-17 14:42:05 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-04-17 14:42:05 +0300 |
commit | 8af8105444522c2c71b5ddd36a550e964cddffbf (patch) | |
tree | 1ba8f2e7da47efd9cb878794f95cfbb35ab3f0ed /gn3/auth/authorisation/groups/data.py | |
parent | 85abf12d364c626af9177deb0398849845bcc6c3 (diff) | |
download | genenetwork3-8af8105444522c2c71b5ddd36a550e964cddffbf.tar.gz |
Hook up code to use external search script for phenotypes
Diffstat (limited to 'gn3/auth/authorisation/groups/data.py')
-rw-r--r-- | gn3/auth/authorisation/groups/data.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gn3/auth/authorisation/groups/data.py b/gn3/auth/authorisation/groups/data.py index 453cc71..ee6f70e 100644 --- a/gn3/auth/authorisation/groups/data.py +++ b/gn3/auth/authorisation/groups/data.py @@ -1,13 +1,11 @@ """Handles the resource objects' data.""" -from typing import Any, Sequence - from MySQLdb.cursors import DictCursor from gn3 import db_utils as gn3db from gn3.auth import db as authdb from gn3.auth.authorisation.groups import Group from gn3.auth.authorisation.checks import authorised_p -from gn3.auth.authorisation.errors import InvalidData, NotFoundError +from gn3.auth.authorisation.errors import NotFoundError def __fetch_mrna_data_by_ids__( conn: gn3db.Connection, dataset_ids: tuple[str, ...]) -> tuple[ |