Skip to content

Commit

Permalink
removed callback exception warnings on bubble_chart
Browse files Browse the repository at this point in the history
  • Loading branch information
alxkp committed Mar 16, 2021
1 parent f38ea13 commit 5b00c8c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/tesla_ver/bubble_chart/bubble_chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ def generate_bubble_chart(server):
app = dash.Dash(__name__, server=server, url_base_pathname="/bubblechart.html/")

app.layout = LAYOUT

# Ignores callback exceptions -- this is to allow for the initial state of the time value to be set
# without raising errors
app.config.suppress_callback_exceptions = True

server.logger.debug("Bubble Chart layout loaded")

@app.callback(
Expand Down

0 comments on commit 5b00c8c

Please sign in to comment.