Skip to content

Commit

Permalink
New default value passed to --listtools (#73)
Browse files Browse the repository at this point in the history
* Closes #70

* Docs
  • Loading branch information
brownag authored Apr 13, 2022
1 parent 6a57171 commit d9676cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions R/wbt.R
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ wbt_version <- function() {

#' All available tools in WhiteboxTools
#'
#' @param keywords Keywords may be used to search available tools.
#' @param keywords Keywords may be used to search available tools. Default `"''"` returns all available tools.
#'
#' @return Return all available tools in WhiteboxTools that contain the keywords.
#' @export
Expand All @@ -602,7 +602,7 @@ wbt_version <- function() {
#' \dontrun{
#' wbt_list_tools("lidar")
#' }
wbt_list_tools <- function(keywords = NULL) {
wbt_list_tools <- function(keywords = "''") {
ret <- wbt_system_call(paste("--listtools", keywords))
ret <- ret[ret != ""]
if (wbt_verbose()) {
Expand Down
4 changes: 2 additions & 2 deletions man/wbt_list_tools.Rd

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

0 comments on commit d9676cf

Please sign in to comment.