Skip to content

Commit

Permalink
#164 lintr fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbarbone committed Mar 12, 2023
1 parent dc89ef9 commit 601cca7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/echo.R
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ echo <- function(exprs, to = stdout(), msg = TRUE) {
if (is.null(res)) {
utils::flush.console()
} else {
catln(paste0(time(), "[OUT] #> ", utils::capture.output(res), collapse = "\n"))
catln(
paste0(time(), "[OUT] #> ", utils::capture.output(res), collapse = "\n")
)
}
}

Expand Down

0 comments on commit 601cca7

Please sign in to comment.