Skip to content

Commit fd4e2d9

Browse files
refactor(SAFE): fmt
1 parent 8beb179 commit fd4e2d9

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

perimeter-security-control/streamlit_app.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,17 @@
1010
import streamlit as st
1111
from snowflake.snowpark.context import get_active_session
1212
from streamlit.navigation.page import StreamlitPage
13+
1314
try:
1415
from toolz import pipe
1516
from toolz.curried import do as cdo
1617
from toolz.curried import filter as cfilter
1718
from toolz.curried import map as cmap
1819
from toolz.curried import pluck as cpluck
1920
except ImportError:
20-
st.error("Could not import `toolz` package. Please make sure it's added to the list of packages in the dropdown.")
21+
st.error(
22+
"Could not import `toolz` package. Please make sure it's added to the list of packages in the dropdown."
23+
)
2124
st.stop()
2225

2326
st.set_page_config(layout="wide")

0 commit comments

Comments
 (0)