Woffee commited on
Commit
0d41a24
·
1 Parent(s): 4441b59

course schedule

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -59,8 +59,6 @@ def read_excel_and_process(fi):
59
 
60
  df = pd.DataFrame.from_dict(data_2)
61
  # df.to_excel("visualization.xlsx", index=False)
62
- # return "visualization.xlsx"
63
-
64
 
65
  with pd.ExcelWriter('visualization.xlsx', engine='openpyxl') as writer:
66
  df.to_excel(writer, sheet_name='Sheet1', index=False)
@@ -74,7 +72,8 @@ def read_excel_and_process(fi):
74
 
75
  for cell in worksheet[column_letter]:
76
  cell.alignment = Alignment(wrap_text=True)
77
-
 
78
 
79
 
80
 
 
59
 
60
  df = pd.DataFrame.from_dict(data_2)
61
  # df.to_excel("visualization.xlsx", index=False)
 
 
62
 
63
  with pd.ExcelWriter('visualization.xlsx', engine='openpyxl') as writer:
64
  df.to_excel(writer, sheet_name='Sheet1', index=False)
 
72
 
73
  for cell in worksheet[column_letter]:
74
  cell.alignment = Alignment(wrap_text=True)
75
+
76
+ return "visualization.xlsx"
77
 
78
 
79