Skip to content

Commit

Permalink
fix import issue with linter
Browse files Browse the repository at this point in the history
  • Loading branch information
t0mdavid-m authored Aug 28, 2024
1 parent 7712e77 commit 1b32a1c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Workflow.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import streamlit as st
from .workflow.WorkflowManager import WorkflowManager
from src.workflow.WorkflowManager import WorkflowManager

# for result section:
from pathlib import Path
import pandas as pd
import plotly.express as px
from .common import show_fig
from src.common import show_fig


class Workflow(WorkflowManager):
Expand Down
4 changes: 2 additions & 2 deletions src/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import plotly.graph_objects as go
import streamlit as st
import pyopenms as poms
from .plotting.MSExperimentPlotter import plotMSExperiment
from .common import show_fig
from src.plotting.MSExperimentPlotter import plotMSExperiment
from src.common import show_fig

from typing import Union

Expand Down

0 comments on commit 1b32a1c

Please sign in to comment.