Skip to content

Commit

Permalink
Merge branch 'release/v0.1.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
KelSolaar committed Nov 3, 2019
2 parents de35069 + 04eda96 commit 99a1d32
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

__major_version__ = '0'
__minor_version__ = '1'
__change_version__ = '10'
__change_version__ = '11'
__version__ = '.'.join(
(__major_version__,
__minor_version__,
Expand All @@ -43,21 +43,15 @@
SERVER_URL : unicode
"""

APP = dash.Dash(__application_name__, server=SERVER)
APP = dash.Dash(
__application_name__,
external_scripts=os.environ.get('COLOUR_DASH_JS', '').split(','),
external_stylesheets=os.environ.get('COLOUR_DASH_CSS', '').split(','),
server=SERVER)
"""
*Dash* app.
APP : Dash
"""

APP.config['suppress_callback_exceptions'] = True

APP.css.append_css({
'external_url':
os.environ.get('COLOUR_DASH_CSS', '').split(',')
})

APP.scripts.append_script({
'external_url':
os.environ.get('COLOUR_DASH_JS', '').split(',')
})

0 comments on commit 99a1d32

Please sign in to comment.