Unverified Commit 7b51ee1c authored by James Lamb's avatar James Lamb Committed by GitHub
Browse files

[R-package] remove semicolon in R code (#5232)

parent d3832368
......@@ -719,8 +719,9 @@ Booster <- R6::R6Class(
res <- feval(private$inner_predict(data_idx), data)
if (is.null(res$name) || is.null(res$value) || is.null(res$higher_better)) {
stop("lgb.Booster.eval: custom eval function should return a
list with attribute (name, value, higher_better)");
stop(
"lgb.Booster.eval: custom eval function should return a list with attribute (name, value, higher_better)"
)
}
# Append names and evaluation
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment