Update app.py
Browse files
app.py
CHANGED
@@ -76,7 +76,7 @@ while True:
|
|
76 |
|
77 |
csv_file_path = "Resources.csv"
|
78 |
with open(csv_file_path, mode='r') as f:
|
79 |
-
|
80 |
|
81 |
# show the csv file
|
82 |
if rows:
|
|
|
76 |
|
77 |
csv_file_path = "Resources.csv"
|
78 |
with open(csv_file_path, mode='r') as f:
|
79 |
+
rows = list(csv.reader(f))
|
80 |
|
81 |
# show the csv file
|
82 |
if rows:
|