Skip to content

Commit

Permalink
flake8/linter cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Dec 11, 2024
1 parent cc908ff commit 04e28b1
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions applications/aws_dashboard/pages/models/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,7 @@ def models_layout(
**kwargs: Any,
) -> html.Div:
# Generate rows for each plugin
plugin_rows = [
dbc.Row(
plugin,
style={"padding": "0px 0px 20px 0px"}
)
for component_id, plugin in kwargs.items()
]
plugin_rows = [dbc.Row(plugin, style={"padding": "0px 0px 20px 0px"}) for component_id, plugin in kwargs.items()]
layout = html.Div(
children=[
dcc.Interval(id="models_refresh", interval=60000),
Expand Down

0 comments on commit 04e28b1

Please sign in to comment.