Upload index.py
Browse files
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:
|