diff options
author | zsloan | 2024-05-31 20:24:30 +0000 |
---|---|---|
committer | zsloan | 2024-05-31 21:21:44 +0000 |
commit | 084c82685ca1b85648d7cd48672c3c0ecf2a49fd (patch) | |
tree | 078c4cf7175353d9ef81efb9fd9084a0f92d71ef /gn2 | |
parent | fb5f3ed5b56e5a13fcacb904887d22db86e735f8 (diff) | |
download | genenetwork2-084c82685ca1b85648d7cd48672c3c0ecf2a49fd.tar.gz |
Restore collections endpoints
Import was removed in commit 7c77ff91f6530aca0865bd13025811f2f93e3541
because it wasn't being used in views.py, but it was providing the
collections endpoints albeit indirectly. This commit makes it somewhat
explicit that it is a needed module.
Diffstat (limited to 'gn2')
-rw-r--r-- | gn2/gn2_main.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gn2/gn2_main.py b/gn2/gn2_main.py index 38444620..197eed83 100644 --- a/gn2/gn2_main.py +++ b/gn2/gn2_main.py @@ -15,5 +15,6 @@ from gn2.wqflask import search_results from gn2.wqflask import resource_manager from gn2.wqflask import update_search_results +import gn2.wqflask.collect import gn2.wqflask.views import gn2.wqflask.partial_correlations_views |