maddiaks commited on
Commit
e2f184b
·
verified ·
1 Parent(s): e9b1350

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +3 -3
src/streamlit_app.py CHANGED
@@ -23,11 +23,11 @@ json_path = os.path.join(os.path.dirname(__file__), file_path)
23
 
24
 
25
  if os.path.exists(json_path):
26
- st.success(f"Found file: {json_path}")
27
  with open(json_path, "r") as file:
28
  fSWDDetails = json.load(file)
29
- st.write("Loaded JSON:")
30
- st.json(fSWDDetails)
31
  else:
32
  st.error(f"File not found: {file_path}")
33
 
 
23
 
24
 
25
  if os.path.exists(json_path):
26
+ # st.success(f"Found file: {json_path}")
27
  with open(json_path, "r") as file:
28
  fSWDDetails = json.load(file)
29
+ # st.write("Loaded JSON:")
30
+ # st.json(fSWDDetails)
31
  else:
32
  st.error(f"File not found: {file_path}")
33