Entz commited on
Commit
fe3f785
·
verified ·
1 Parent(s): 332eefe

Upload index.py

Browse files
Files changed (1) hide show
  1. index.py +3 -0
index.py CHANGED
@@ -26,6 +26,9 @@ Data quality issues have long plagued council databases, burdening W2 workflow t
26
 
27
  def read_content_from_file(file_path):
28
  try:
 
 
 
29
  with open(file_path, 'r') as file:
30
  return file.read()
31
  except FileNotFoundError:
 
26
 
27
  def read_content_from_file(file_path):
28
  try:
29
+ import os
30
+ st.write("Current working directory:", os.getcwd())
31
+ st.write("Files in directory:", os.listdir())
32
  with open(file_path, 'r') as file:
33
  return file.read()
34
  except FileNotFoundError: