Skip to content

Commit

Permalink
Avoid tidyselect warnings
Browse files Browse the repository at this point in the history
See #128
  • Loading branch information
damianooldoni committed Jun 26, 2024
1 parent b3c8d16 commit 0e58d67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/gbif_verify_keys.R
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ gbif_verify_keys <- function(keys, col_keys = "key") {
check_keys <-
check_keys %>%
dplyr::left_join(valid_keys_df %>%
dplyr::select(.data$key, .data$is_from_gbif_backbone),
dplyr::select("key", "is_from_gbif_backbone"),
by = "key"
)
valid_keys_df <-
Expand All @@ -148,7 +148,7 @@ gbif_verify_keys <- function(keys, col_keys = "key") {
check_keys <-
check_keys %>%
dplyr::left_join(valid_keys_df %>%
dplyr::select(.data$key, .data$is_synonym),
dplyr::select("key", "is_synonym"),
by = "key"
)
} else {
Expand Down

0 comments on commit 0e58d67

Please sign in to comment.