Skip to content

Commit

Permalink
address no visible binding for global variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
JaseZiv committed Jan 14, 2024
1 parent 379189d commit d7728d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ importFrom(dplyr,bind_rows)
importFrom(dplyr,case_when)
importFrom(dplyr,filter)
importFrom(dplyr,mutate)
importFrom(dplyr,mutate_all)
importFrom(dplyr,pull)
importFrom(dplyr,select)
importFrom(dplyr,transmute)
Expand Down
2 changes: 1 addition & 1 deletion R/tm_player_absence.R
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

main_df <- main_df |>
dplyr::mutate_all(as.character) |>
dplyr::mutate(dplyr::across(c(from, until), .tm_fix_dates)) |>
dplyr::mutate(dplyr::across(c("from", "until"), .tm_fix_dates)) |>
janitor::clean_names()

}
Expand Down

0 comments on commit d7728d0

Please sign in to comment.