YashMK89 commited on
Commit
72cb465
·
verified ·
1 Parent(s): ee13934

update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -236,8 +236,8 @@ if file_upload:
236
 
237
 
238
  # Loop through the selected frequency and increment the date
239
- while current_date <= end_date:
240
- current_date_str = current_date.strftime('%Y-%m-%d')
241
 
242
  # Store results with dates for aggregation
243
  results_with_dates = []
 
236
 
237
 
238
  # Loop through the selected frequency and increment the date
239
+ while start_date <= end_date:
240
+ start_date_str = start_date.strftime('%Y-%m-%d')
241
 
242
  # Store results with dates for aggregation
243
  results_with_dates = []