Skip to content

Commit 2a2a67a

Browse files
committed
black
1 parent 6d1a77f commit 2a2a67a

File tree

1 file changed

+4
-17
lines changed

1 file changed

+4
-17
lines changed

apps/dash-lastodash/lastodash.py

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,7 @@ def parse_args():
3232
help="Log ASCII Standard (LAS) file",
3333
)
3434

35-
parser.add_argument(
36-
"--debug", "-d",
37-
action="store_true",
38-
help="enable debug mode"
39-
)
35+
parser.add_argument("--debug", "-d", action="store_true", help="enable debug mode")
4036

4137
args = parser.parse_args()
4238

@@ -58,10 +54,7 @@ def generate_frontpage():
5854
return html.Div(
5955
id="las-header",
6056
children=[
61-
html.Img(
62-
id="las-logo",
63-
src=app.get_asset_url("logo.png")
64-
),
57+
html.Img(id="las-logo", src=app.get_asset_url("logo.png")),
6558
html.Div(
6659
id="las-header-text",
6760
children=[
@@ -81,10 +74,7 @@ def generate_frontpage():
8174
),
8275
],
8376
),
84-
html.Img(
85-
id="dash-logo",
86-
src=app.get_asset_url("dash-logo.png")
87-
)
77+
html.Img(id="dash-logo", src=app.get_asset_url("dash-logo.png")),
8878
],
8979
)
9080

@@ -296,10 +286,7 @@ def generate_table():
296286
)
297287

298288

299-
@app.callback(
300-
Output("las-table-print", "children"),
301-
[Input("table", "data")]
302-
)
289+
@app.callback(Output("las-table-print", "children"), [Input("table", "data")])
303290
def update_table_print(data):
304291
colwidths = {
305292
"mnemonic": "100px",

0 commit comments

Comments
 (0)