Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -637,7 +637,7 @@ def server(input, output, session):
|
|
637 |
test_df = test_df.sort_values(by=[sort_value,'Score'],ascending = ascend)
|
638 |
|
639 |
for i in range(0,len(date_list)):
|
640 |
-
test_df[calendar.day_name[date_list[i].weekday()]+'<br>'+str(date_list[i].month)+'-'+'{:02d}'.format(date_list[i].day)] = test_list[i]['new_text']
|
641 |
|
642 |
row = ['']*L
|
643 |
for x in test_df[test_df.columns[L:]]:
|
|
|
637 |
test_df = test_df.sort_values(by=[sort_value,'Score'],ascending = ascend)
|
638 |
|
639 |
for i in range(0,len(date_list)):
|
640 |
+
test_df[calendar.day_name[date_list[i].weekday()]+'<br>'+str(date_list[i].month).zfill(2)+'-'+'{:02d}'.format(date_list[i].day)] = test_list[i]['new_text']
|
641 |
|
642 |
row = ['']*L
|
643 |
for x in test_df[test_df.columns[L:]]:
|