Skip to content

Commit

Permalink
Remove .data$ prefix on currency_info variable
Browse files Browse the repository at this point in the history
  • Loading branch information
stevecondylios committed Oct 3, 2023
1 parent 9d03fd5 commit 4bede90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/currencies.R
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ currencies <- function() {
df %>%
select(.data$ind) %>%
rename(code = .data$ind) %>%
left_join(select(.data$currency_info, .data$iso_code, .data$name), by = c("code" = "iso_code")) %>%
left_join(select(priceR::currency_info, .data$iso_code, .data$name), by = c("code" = "iso_code")) %>%
select(description = .data$name, code = .data$code)

}
Expand Down

0 comments on commit 4bede90

Please sign in to comment.