Skip to content

Commit 69cf901

Browse files
committed
Remove serve_locally from demos
1 parent f6913e7 commit 69cf901

17 files changed

+0
-34
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ import dash_cytoscape as cyto
2727
from dash import html
2828
2929
app = dash.Dash(__name__)
30-
app.scripts.config.serve_locally = True
31-
app.css.config.serve_locally = True
3230
3331
app.layout = html.Div([
3432
cyto.Cytoscape(

demos/usage-animated-bfs.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
app = dash.Dash(__name__)
1313
server = app.server
1414

15-
app.scripts.config.serve_locally = True
16-
app.css.config.serve_locally = True
1715

1816
elements = [
1917
{"data": {"id": "a"}},

demos/usage-breadthfirst-layout.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
app = dash.Dash(__name__)
1313
server = app.server
1414

15-
app.scripts.config.serve_locally = True
16-
app.css.config.serve_locally = True
1715

1816
elements = [
1917
{"data": {"id": "cat"}},

demos/usage-circle-layout.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
app = dash.Dash(__name__)
1212
server = app.server
1313

14-
app.scripts.config.serve_locally = True
15-
app.css.config.serve_locally = True
1614

1715
# Load Data
1816
with open("data/circle-layout/data.json", "r", encoding="utf-8") as f:

demos/usage-compound-nodes.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
app = dash.Dash(__name__)
1212
server = app.server
1313

14-
app.scripts.config.serve_locally = True
15-
app.css.config.serve_locally = True
1614

1715
elements = [
1816
{"data": {"id": "a", "parent": "b"}, "position": {"x": 215, "y": 85}},

demos/usage-concentric-layout.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
app = dash.Dash(__name__)
2626
server = app.server
2727

28-
app.scripts.config.serve_locally = True
29-
app.css.config.serve_locally = True
3028

3129
# Load Data
3230
with open("data/concentric-layout/data.json", "r", encoding="utf-8") as f:

demos/usage-cose-bilkent-layout.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
}
2424
)
2525

26-
app.scripts.config.serve_locally = True
27-
app.css.config.serve_locally = True
2826

2927
# Load Data
3028
with open("data/cose-bilkent-layout/data.json", "r", encoding="utf-8") as f:

demos/usage-cose-layout.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
app = dash.Dash(__name__)
1515
server = app.server
1616

17-
app.scripts.config.serve_locally = True
18-
app.css.config.serve_locally = True
1917

2018
# Load Data
2119
with open("data/cose-layout/data.json", "r", encoding="utf-8") as f:

demos/usage-edge-types.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
app = dash.Dash(__name__)
2929
server = app.server
3030

31-
app.scripts.config.serve_locally = True
32-
app.css.config.serve_locally = True
3331

3432
with open("data/edge-types/data.json", "r", encoding="utf-8") as f:
3533
elements = json.loads(f.read())

demos/usage-grid-layout.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
app = dash.Dash(__name__)
1212
server = app.server
1313

14-
app.scripts.config.serve_locally = True
15-
app.css.config.serve_locally = True
1614

1715
# Load Data
1816
with open("data/grid-layout/data.json", "r", encoding="utf-8") as f:

0 commit comments

Comments
 (0)