Skip to content

Commit f9b394a

Browse files
Fixed black formatting
1 parent 6d78eb6 commit f9b394a

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

python-dash/apps/app_1/app.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212

1313
app.layout = html.Div(
1414
children=[
15-
html.H1(children="Avocado Analytics",),
15+
html.H1(
16+
children="Avocado Analytics",
17+
),
1618
html.P(
1719
children="Analyze the behavior of avocado prices"
1820
" and the number of avocados sold in the US"

python-dash/apps/app_3/app.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,15 @@
9090
children=[
9191
html.Div(
9292
children=dcc.Graph(
93-
id="price-chart", config={"displayModeBar": False},
93+
id="price-chart",
94+
config={"displayModeBar": False},
9495
),
9596
className="card",
9697
),
9798
html.Div(
9899
children=dcc.Graph(
99-
id="volume-chart", config={"displayModeBar": False},
100+
id="volume-chart",
101+
config={"displayModeBar": False},
100102
),
101103
className="card",
102104
),

python-dash/apps/app_4/app.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,15 @@
9191
children=[
9292
html.Div(
9393
children=dcc.Graph(
94-
id="price-chart", config={"displayModeBar": False},
94+
id="price-chart",
95+
config={"displayModeBar": False},
9596
),
9697
className="card",
9798
),
9899
html.Div(
99100
children=dcc.Graph(
100-
id="volume-chart", config={"displayModeBar": False},
101+
id="volume-chart",
102+
config={"displayModeBar": False},
101103
),
102104
className="card",
103105
),

0 commit comments

Comments
 (0)