mirror of
https://github.com/gosticks/dash-player.git
synced 2025-10-16 11:55:36 +00:00
Fix consolidate imports from dash
This commit is contained in:
parent
b0018863bf
commit
2e827f33a8
@ -1,10 +1,9 @@
|
|||||||
from textwrap import dedent
|
from textwrap import dedent
|
||||||
|
|
||||||
|
from dash import Dash, dcc, html, Input, Output, State
|
||||||
import dash_player
|
import dash_player
|
||||||
import dash
|
|
||||||
from dash import dcc, html, Input, Output, State
|
|
||||||
|
|
||||||
app = dash.Dash(__name__)
|
app = Dash(__name__)
|
||||||
server = app.server
|
server = app.server
|
||||||
|
|
||||||
app.scripts.config.serve_locally = True
|
app.scripts.config.serve_locally = True
|
||||||
|
|||||||
@ -1,8 +1,7 @@
|
|||||||
|
from dash import Dash, html, Input, Output, State
|
||||||
import dash_player
|
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
|
app.scripts.config.serve_locally = True
|
||||||
|
|
||||||
|
|||||||
5
usage.py
5
usage.py
@ -1,8 +1,7 @@
|
|||||||
|
from dash import Dash, dcc, html, Input, Output, State
|
||||||
import dash_player
|
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
|
app.scripts.config.serve_locally = True
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user