Skip to content

Commit

Permalink
Ensure to declare package name for bind_rows
Browse files Browse the repository at this point in the history
  • Loading branch information
truenomad committed Dec 4, 2023
1 parent 6e3753f commit 62667f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/update_polis_api_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ update_polis_api_data <- function(min_date,

# Combine new data with existing data
if (nrow(new_data) > 0) {
full_data <- bind_rows(full_data, new_data)
full_data <- dplyr::bind_rows(full_data, new_data)
}

# Log the session details to an Excel file
Expand Down

0 comments on commit 62667f4

Please sign in to comment.