Skip to content

Commit

Permalink
lint update
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelicr committed May 7, 2024
1 parent 1b26e17 commit 11809be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/SOPRANO/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
)
from SOPRANO.utils.path_utils import Directories

logo_path = "/".join(__file__.split("/")[:-1] + ['static', 'logo.png'])
logo_path = "/".join(__file__.split("/")[:-1] + ["static", "logo.png"])


def with_tab_pipeline(tab: DeltaGenerator):
Expand Down Expand Up @@ -482,7 +482,7 @@ def with_tab_immunopeptidome(tab: DeltaGenerator):

if __name__ == "__main__":
st.set_page_config(layout="wide")
header1 = ""#f'<img src="{logo_path}" alt="icr" width="200px">'
header1 = "" # f'<img src="{logo_path}" alt="icr" width="200px">'
header2 = """
<span style="color:black;">Institute of Cancer Research - SOPRANO - </span><span style=
"color:grey">S</span><span style=
Expand All @@ -497,7 +497,7 @@ def with_tab_immunopeptidome(tab: DeltaGenerator):
"color:grey">O</span><span style=
"color:darkred">ns</span>
"""
st.markdown(header1+header2, unsafe_allow_html=True)
st.markdown(header1 + header2, unsafe_allow_html=True)
(
welcome_tab,
genome_tab,
Expand Down

0 comments on commit 11809be

Please sign in to comment.