Skip to content

Commit

Permalink
Remove print Platform for Streamlit
Browse files Browse the repository at this point in the history
  • Loading branch information
Jumitti committed Dec 15, 2024
1 parent 874f381 commit d8d41ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion TFinder-v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,11 @@ def load_lottiefile(filepath: str):

if 'LOCAL' not in st.session_state:
local_test = platform.processor()
print("Platform:", local_test)

if local_test == "":
st.session_state["LOCAL"] = 'False'
else:
print("Platform:", local_test)
st.session_state["LOCAL"] = 'True'

if st.session_state["LOCAL"] == 'False':
Expand Down

0 comments on commit d8d41ef

Please sign in to comment.