Skip to content

Commit

Permalink
Try to fix R CMD check warning about global variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
bschneidr committed May 12, 2021
1 parent 0f724f3 commit 7f2130c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions R/join.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ semi_join.tbl_svy <- function(
...)

x <- mutate(x, `___retained` = `___row_number` %in% filtered_vars[['___row_number']])
x <- filter(x, `___retained`)
x <- select(x, -`___retained`)
x <- filter(x, .data$`___retained`)
x <- select(x, -.data$`___retained`)

x

Expand Down
4 changes: 2 additions & 2 deletions man/dplyr_filter_joins.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7f2130c

Please sign in to comment.