Skip to content

Commit

Permalink
Merge pull request #257 from OpenTreeOfLife/pycharm-inspections
Browse files Browse the repository at this point in the history
Pycharm inspections
  • Loading branch information
mtholder authored Aug 2, 2023
2 parents 246977a + 31adaa4 commit f867d09
Show file tree
Hide file tree
Showing 29 changed files with 1,889 additions and 2,638 deletions.
4 changes: 2 additions & 2 deletions phylesystem_api/phylesystem_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pyramid.config import Configurator
from .api_utils import get_conf_object, get_phylesystem
from .api_utils import get_conf_object, get_docstore_from_type


def main(global_config, **settings):
Expand All @@ -14,5 +14,5 @@ def main(global_config, **settings):
# print("{k}: {v}".format(k=k, v=repr(v)))
localconfig_filename = settings["config_file_path"]
conf_obj = get_conf_object(localconfig_filename=localconfig_filename)
_ps = get_phylesystem(request=None, conf_obj=conf_obj)
_ps = get_docstore_from_type("study", request=None, conf_obj=conf_obj)
return config.make_wsgi_app()
Loading

0 comments on commit f867d09

Please sign in to comment.