Jay-Rajput commited on
Commit
17c5f72
·
1 Parent(s): 054c4c5

Adding wildcard

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -321,7 +321,7 @@ def display_predictions():
321
  predictions_df['prediction_date'] = predictions_df.apply(lambda x: datetime.strptime(x['prediction_date'], '%Y-%m-%d'), axis=1)
322
 
323
  # Filter for today's predictions
324
- today_str = datetime.now().strftime('%Y-%m-%d')
325
  todays_predictions = predictions_df[predictions_df['prediction_date'] == today_str]
326
 
327
  # Remove the 'prediction_id' column if it exists
 
321
  predictions_df['prediction_date'] = predictions_df.apply(lambda x: datetime.strptime(x['prediction_date'], '%Y-%m-%d'), axis=1)
322
 
323
  # Filter for today's predictions
324
+ today_str = "2025-05-29" # datetime.now().strftime('%Y-%m-%d')
325
  todays_predictions = predictions_df[predictions_df['prediction_date'] == today_str]
326
 
327
  # Remove the 'prediction_id' column if it exists