Dearsawan commited on
Commit
c666ae5
·
verified ·
1 Parent(s): a5f19be

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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"<b>{day}</b>" 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)
 
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)