Skip to content

Commit

Permalink
Change select() to distinct()
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff-Thompson12 committed Aug 14, 2023
1 parent 030f7df commit 1c7dfd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/mod_packageDependencies.R
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ packageDependenciesServer <- function(id, selected_pkg, user, changes, parent) {

purrr::map_df(pkginfo$name, ~get_versnScore(.x, loaded2_db(), cran_pkgs)) %>%
right_join(pkginfo, by = "name") %>%
select(package, type, name, version, score)
distinct(package, type, name, version, score)
}

})
Expand Down

0 comments on commit 1c7dfd5

Please sign in to comment.