We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8beb179 commit fd4e2d9Copy full SHA for fd4e2d9
1 file changed
perimeter-security-control/streamlit_app.py
@@ -10,14 +10,17 @@
10
import streamlit as st
11
from snowflake.snowpark.context import get_active_session
12
from streamlit.navigation.page import StreamlitPage
13
+
14
try:
15
from toolz import pipe
16
from toolz.curried import do as cdo
17
from toolz.curried import filter as cfilter
18
from toolz.curried import map as cmap
19
from toolz.curried import pluck as cpluck
20
except ImportError:
- 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
+ )
24
st.stop()
25
26
st.set_page_config(layout="wide")
0 commit comments