Fix consolidate imports from dash

This commit is contained in:
Alex Hsu 2022-09-16 15:58:26 -04:00
parent 907244094f
commit d0c44172e9
3 changed files with 6 additions and 9 deletions

View File

@ -1,10 +1,9 @@
from textwrap import dedent
from dash import Dash, dcc, html, Input, Output, State
import dash_player
import dash
from dash import dcc, html, Input, Output, State
app = dash.Dash(__name__)
app = Dash(__name__)
server = app.server
app.scripts.config.serve_locally = True

View File

@ -1,8 +1,7 @@
from dash import Dash, html, Input, Output, State
import dash_player
import dash
from dash import dcc, html, Input, Output, State
app = dash.Dash(__name__)
app = Dash(__name__)
app.scripts.config.serve_locally = True

View File

@ -1,8 +1,7 @@
from dash import Dash, dcc, html, Input, Output, State
import dash_player
import dash
from dash import dcc, html, Input, Output
app = dash.Dash(__name__)
app = Dash(__name__)
app.scripts.config.serve_locally = True