Skip to content

Commit

Permalink
fixed ruff-created f-string that made no sense
Browse files Browse the repository at this point in the history
  • Loading branch information
reinout committed Nov 4, 2024
1 parent bde7095 commit d152561
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions utils2.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ def navbar_authenticated(name, title=TITLE, logo_path=LOGO_PATH, nav_bool=NAV_BO
"""

st.markdown(
f"""
"""
<style>
.appview-container .main .block-container {{
padding-top: {0}rem;
padding-bottom: {0}rem;
padding-top: 0rem;
padding-bottom: 0rem;
}}
st.markdown(
Expand Down Expand Up @@ -116,11 +116,11 @@ def navbar_authenticated(name, title=TITLE, logo_path=LOGO_PATH, nav_bool=NAV_BO
"""

st.markdown(
f"""
"""
<style>
.appview-container .main .block-container {{
padding-top: {0}rem;
padding-bottom: {0}rem;
padding-top: 0rem;
padding-bottom: 0rem;
}}
st.markdown(
Expand Down Expand Up @@ -167,11 +167,11 @@ def navbar_unauthenticated(title=TITLE, logo_path=LOGO_PATH):
</nav>
"""
st.markdown(
f"""
"""
<style>
.appview-container .main .block-container {{
padding-top: {0}rem;
padding-bottom: {0}rem;
padding-top: 0rem;
padding-bottom: 0rem;
}}
</style>""",
Expand Down

0 comments on commit d152561

Please sign in to comment.