Skip to content

Commit

Permalink
return result invisibly
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinushey committed Mar 30, 2022
1 parent 51bf321 commit dedf09f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/commands.R
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
#' executions.
#' @export executeCommand
executeCommand <- function(commandId, quiet = FALSE) {
callFun("executeCommand", commandId = commandId, quiet = quiet)
response <- callFun("executeCommand", commandId = commandId, quiet = quiet)
invisible(response)
}

#' Register Command Callback
Expand Down

0 comments on commit dedf09f

Please sign in to comment.