We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8dab61 commit c56c6c3Copy full SHA for c56c6c3
1 file changed
R/schedule_data.R
@@ -36,7 +36,7 @@ first_last_games = get_first_last_kickoff()
36
37
get_scrape_starts = function(first_last_games) {
38
if(missing(first_last_games)) {
39
- first_last_games = first_last_games
+ first_last_games = ffanalytics:::first_last_games
40
}
41
first_last_df = dplyr::bind_rows(first_last_games)
42
last_vec = first_last_df$last
@@ -51,7 +51,7 @@ scrape_start_date = get_scrape_starts(first_last_games)
51
52
get_scrape_week = function(scrape_start_date) {
53
if(missing(scrape_start_date)) {
54
- scrape_start_date = scrape_start_date
+ scrape_start_date = ffanalytics:::scrape_start_date
55
56
sum(Sys.Date() >= scrape_start_date)
57
0 commit comments