nesticot commited on
Commit
73ababa
·
verified ·
1 Parent(s): 63540fd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -246,7 +246,11 @@ def server(input, output, session):
246
  df_spring = pl.read_parquet(f"hf://datasets/TJStatsApps/mlb_data/data/mlb_pitch_data_2025_spring.parquet")
247
 
248
 
249
- date = datetime.datetime.now().date()
 
 
 
 
250
  date_str = date.strftime('%Y-%m-%d')
251
  # Initialize the scraper
252
 
 
246
  df_spring = pl.read_parquet(f"hf://datasets/TJStatsApps/mlb_data/data/mlb_pitch_data_2025_spring.parquet")
247
 
248
 
249
+ import datetime
250
+
251
+ date = (datetime.datetime.now() - datetime.timedelta(hours=8)).date()
252
+ print(date)
253
+
254
  date_str = date.strftime('%Y-%m-%d')
255
  # Initialize the scraper
256