Skip to content

Commit

Permalink
Revert "resolve conflict"
Browse files Browse the repository at this point in the history
This reverts commit 858ff84.
  • Loading branch information
bms63 committed Jul 3, 2023
1 parent b47c7d3 commit 6afe6c4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions R/get.R
Original file line number Diff line number Diff line change
Expand Up @@ -195,13 +195,13 @@ get_used_functions <- function(file){
mutate(function_name = coalesce(.data[["SYMBOL_FUNCTION_CALL"]],
.data[["SPECIAL"]]))

get_library(combine_tokens) %>%
select(all_of(c("function_name", "library"))) %>%
distinct()
distinct_use <- get_library(combine_tokens) %>%
select(.data$function_name, .data$library) %>%
distinct(across())

# distinct_use[is.na(distinct_use)] <- "!!! NOT FOUND !!!"
#
# distinct_use
distinct_use[is.na(distinct_use)] <- "!!! NOT FOUND !!!"

distinct_use

}

Expand Down

0 comments on commit 6afe6c4

Please sign in to comment.