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 8535793 commit 63e788f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion applications/aws_dashboard/pages/feature_sets/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def feature_sets_layout(
dbc.Col(
[
dbc.Row(violin_plot, style={"padding": "0px 0px 30px 0px"}),
dbc.Row(correlation_matrix, style={"padding": "0px 0px 30px 0px"})
dbc.Row(correlation_matrix, style={"padding": "0px 0px 30px 0px"}),
],
width=8,
),
Expand Down
1 change: 0 additions & 1 deletion applications/aws_dashboard/pages/models/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ def models_layout(
[
# Column 1: Model Details
dbc.Col(model_details, width=4, style={"padding": "30px 0px 0px 0px"}),

# Column 2: Model Plot and Plugins
dbc.Col(
[
Expand Down
4 changes: 1 addition & 3 deletions src/sageworks/web_interface/components/regression_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,7 @@ def update_properties(self, model: Model, inference_run: str) -> go.Figure:
)

# Just some fine-tuning of the plot
fig.update_layout(
margin=dict(l=70, r=10, t=15, b=50), # Custom margins
height=360)
fig.update_layout(margin=dict(l=70, r=10, t=15, b=50), height=360) # Custom margins

return fig

Expand Down

0 comments on commit 63e788f

Please sign in to comment.