thak123 commited on
Commit
ccc6048
1 Parent(s): 84504c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -2,7 +2,11 @@ from dash import Dash, html, dcc, callback, Output, Input
2
 
3
  import dash_bootstrap_components as dbc
4
 
 
5
 
6
-
7
- app = Dash(__name__,suppress_callback_exceptions=True,external_stylesheets=[dbc.themes.FLATLY])
 
 
 
8
 
 
2
 
3
  import dash_bootstrap_components as dbc
4
 
5
+ APP_TITLE = "Demo App"
6
 
7
+ app = Dash(__name__,
8
+ title=APP_TITLE,
9
+ update_title='Loading...',
10
+ suppress_callback_exceptions=True,
11
+ external_stylesheets=[dbc.themes.FLATLY])
12