diff options
author | zsloan | 2023-05-22 17:41:25 +0000 |
---|---|---|
committer | zsloan | 2023-05-22 17:41:25 +0000 |
commit | 0f8a34d10905df07b731789ee44c56123be39fbc (patch) | |
tree | a034681b2d16531316b5c6bfc55ce76ab5ec581f /gn3/db | |
parent | db6f7c5099445ce52ff8869438aabd4dc3b332f3 (diff) | |
download | genenetwork3-0f8a34d10905df07b731789ee44c56123be39fbc.tar.gz |
Change type from 'any' to 'Any'
Diffstat (limited to 'gn3/db')
-rw-r--r-- | gn3/db/datasets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/db/datasets.py b/gn3/db/datasets.py index 4372818..929707e 100644 --- a/gn3/db/datasets.py +++ b/gn3/db/datasets.py @@ -34,7 +34,7 @@ def retrieve_sample_list(group: str): return samplelist def retrieve_group_name( - group_id: int, connection: any): + group_id: int, connection: Any): """ Given the group id (InbredSet.Id in the database), retrieve its name """ |