Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -56,7 +56,7 @@ for i in range(12):
|
|
56 |
table_data = []
|
57 |
|
58 |
# Create a row to represent days of the week header
|
59 |
-
table_data.append([f"
|
60 |
|
61 |
# Create an empty row for the calendar days
|
62 |
row = [None] * 7 # A row has 7 days (Sunday to Saturday)
|
|
|
56 |
table_data = []
|
57 |
|
58 |
# Create a row to represent days of the week header
|
59 |
+
table_data.append([f"{day}" for day in days_of_week])
|
60 |
|
61 |
# Create an empty row for the calendar days
|
62 |
row = [None] * 7 # A row has 7 days (Sunday to Saturday)
|