BraydenMoore commited on
Commit
87996af
·
1 Parent(s): 01a6605

Update Source/Predict/predict.py

Browse files
Files changed (1) hide show
  1. Source/Predict/predict.py +1 -0
Source/Predict/predict.py CHANGED
@@ -47,6 +47,7 @@ def get_week():
47
  h2_tags = soup.find_all('h2')
48
  year = h2_tags[0].getText().split(' ')[0]
49
  week = h2_tags[0].getText().split(' ')[-1]
 
50
  return int(week), int(year)
51
 
52
 
 
47
  h2_tags = soup.find_all('h2')
48
  year = h2_tags[0].getText().split(' ')[0]
49
  week = h2_tags[0].getText().split(' ')[-1]
50
+ print(week)
51
  return int(week), int(year)
52
 
53