Update utils/session_utils.py
Browse files- utils/session_utils.py +1 -1
utils/session_utils.py
CHANGED
@@ -19,7 +19,7 @@ def initialize_session_state():
|
|
19 |
def display_memory_once():
|
20 |
if 'memory_logged' not in st.session_state:
|
21 |
mem = psutil.virtual_memory()
|
22 |
-
st.markdown(f"
|
23 |
st.session_state.memory_logged = True
|
24 |
|
25 |
# Reset the app
|
|
|
19 |
def display_memory_once():
|
20 |
if 'memory_logged' not in st.session_state:
|
21 |
mem = psutil.virtual_memory()
|
22 |
+
st.markdown(f"**Memory Used:** {mem.percent}%")
|
23 |
st.session_state.memory_logged = True
|
24 |
|
25 |
# Reset the app
|