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 16, 2024
1 parent 2bfcf16 commit f9c1cab
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 12 deletions.
1 change: 0 additions & 1 deletion applications/aws_dashboard/pages/pipelines/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import logging

import pandas as pd
from dash import callback, Output, Input, State
from dash.exceptions import PreventUpdate
from urllib.parse import urlparse, parse_qs
Expand Down
4 changes: 1 addition & 3 deletions applications/aws_dashboard/pages/pipelines/page.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""Pipelines: A SageWorks Web Interface to view and interact with Pipelines"""

from dash import register_page
import dash

# Local Imports
from .layout import pipelines_layout
Expand Down Expand Up @@ -29,8 +28,7 @@
details_component = pipeline_details.create_component("pipeline_details")

# Capture our components in a dictionary to send off to the layout
components = {"pipelines_table": table_component,
"pipeline_details": details_component}
components = {"pipelines_table": table_component, "pipeline_details": details_component}

# Load any web components plugins of type 'pipeline'
pm = PluginManager()
Expand Down
4 changes: 0 additions & 4 deletions src/sageworks/api/pipeline.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
"""Pipeline: Manages the details around a SageWorks Pipeline, including Execution"""

import sys
import logging
import json
import awswrangler as wr
from typing import Union
import pandas as pd

# SageWorks Imports
from sageworks.utils.config_manager import ConfigManager
from sageworks.core.cloud_platform.aws.aws_account_clamp import AWSAccountClamp
from sageworks.core.pipelines.pipeline_executor import PipelineExecutor
from sageworks.api.parameter_store import ParameterStore

Expand Down
2 changes: 0 additions & 2 deletions src/sageworks/cached/cached_pipeline.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"""CachedPipeline: Caches the method results for SageWorks Pipelines"""

from typing import Union

# SageWorks Imports
from sageworks.api.pipeline import Pipeline
from sageworks.core.artifacts.cached_artifact_mixin import CachedArtifactMixin
Expand Down
1 change: 0 additions & 1 deletion src/sageworks/repl/sageworks_shell.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import pandas as pd
from IPython import start_ipython
from IPython.terminal.prompts import Prompts
from IPython.terminal.ipapp import load_default_config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

# SageWorks Imports
from sageworks.api.pipeline import Pipeline
from sageworks.utils.markdown_utils import health_tag_markdown
from sageworks.web_interface.components.plugin_interface import PluginInterface, PluginPage, PluginInputType

# Get the SageWorks logger
Expand Down

0 comments on commit f9c1cab

Please sign in to comment.