diff --git a/applications/aws_dashboard/pages/pipelines/callbacks.py b/applications/aws_dashboard/pages/pipelines/callbacks.py index d6558b2f..7336f62a 100644 --- a/applications/aws_dashboard/pages/pipelines/callbacks.py +++ b/applications/aws_dashboard/pages/pipelines/callbacks.py @@ -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 diff --git a/applications/aws_dashboard/pages/pipelines/page.py b/applications/aws_dashboard/pages/pipelines/page.py index 2413e59c..255bc63d 100644 --- a/applications/aws_dashboard/pages/pipelines/page.py +++ b/applications/aws_dashboard/pages/pipelines/page.py @@ -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 @@ -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() diff --git a/src/sageworks/api/pipeline.py b/src/sageworks/api/pipeline.py index 5bdb3500..4bf9c205 100644 --- a/src/sageworks/api/pipeline.py +++ b/src/sageworks/api/pipeline.py @@ -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 diff --git a/src/sageworks/cached/cached_pipeline.py b/src/sageworks/cached/cached_pipeline.py index d549c1d2..a5b7b5b5 100644 --- a/src/sageworks/cached/cached_pipeline.py +++ b/src/sageworks/cached/cached_pipeline.py @@ -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 diff --git a/src/sageworks/repl/sageworks_shell.py b/src/sageworks/repl/sageworks_shell.py index b4e0eba7..53396f00 100644 --- a/src/sageworks/repl/sageworks_shell.py +++ b/src/sageworks/repl/sageworks_shell.py @@ -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 diff --git a/src/sageworks/web_interface/components/plugins/pipeline_details.py b/src/sageworks/web_interface/components/plugins/pipeline_details.py index eaa8e5ae..cf99452d 100644 --- a/src/sageworks/web_interface/components/plugins/pipeline_details.py +++ b/src/sageworks/web_interface/components/plugins/pipeline_details.py @@ -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