Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes to use configurable env_utils #499

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ dist/
htmlcov/
coverage.xml
.python-version
.python-cmd
*.ipynb
!*LocalTest.ipynb
requirements.txt
Expand Down
4 changes: 2 additions & 2 deletions chalicelib/app_utils.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from os.path import dirname
from foursight_core.app_utils import AppUtils as AppUtils_from_core
from foursight_core.app_utils import AppUtilsCore
from .vars import FOURSIGHT_PREFIX, HOST
from dcicutils.env_utils import public_url_for_app


class AppUtils(AppUtils_from_core):
class AppUtils(AppUtilsCore):

# overwriting parent class
prefix = FOURSIGHT_PREFIX
Expand Down
Loading