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 8, 2024
1 parent f65c74f commit b70176e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion applications/aws_dashboard/pages/endpoints/callbacks.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Callbacks for the Endpoints Subpage Web User Interface"""

import logging
from dash import callback, no_update, Input, Output, State
from dash import callback, no_update, Input, Output
from dash.exceptions import PreventUpdate

# SageWorks Imports
Expand Down
1 change: 0 additions & 1 deletion applications/aws_dashboard/pages/models/page.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""Models: A SageWorks Web Interface to view, and interact with Models"""

from dash import register_page
import dash

# Local Imports
from .layout import models_layout
Expand Down
6 changes: 1 addition & 5 deletions examples/plugins/pages/plugin_page_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,7 @@ def page_layout(self) -> dash.html.Div:

# Create the Dash app
my_app = dash.Dash(
__name__,
title="SageWorks Dashboard",
use_pages=True,
external_stylesheets=css_files,
pages_folder=""
__name__, title="SageWorks Dashboard", use_pages=True, external_stylesheets=css_files, pages_folder=""
)
my_app.layout = html.Div(
[
Expand Down
6 changes: 1 addition & 5 deletions examples/plugins/pages/plugin_page_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,7 @@ def update_all_plugin_properties(inference_run, selected_rows):

# Create the Dash app
my_app = dash.Dash(
__name__,
title="SageWorks Dashboard",
use_pages=True,
external_stylesheets=css_files,
pages_folder=""
__name__, title="SageWorks Dashboard", use_pages=True, external_stylesheets=css_files, pages_folder=""
)
my_app.layout = html.Div(
[
Expand Down

0 comments on commit b70176e

Please sign in to comment.