Skip to content

Commit

Permalink
fix: ParamSet print warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
be-marc committed Apr 18, 2024
1 parent 30addd7 commit f413d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/ParamSet.R
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ ParamSet = R6Class("ParamSet",
if (nrow(deps)) { # add a nice extra charvec-col to the tab, which lists all parents-ids
on = NULL
dd = deps[, list(parents = list(unlist(on))), by = "id"]
d = merge(d, dd, on = "id", all.x = TRUE)
d = merge(d, dd, by = "id", all.x = TRUE)
}
v = named_list(d$id) # add values to last col of print-dt as list col
v = insert_named(v, self$values)
Expand Down

0 comments on commit f413d4e

Please sign in to comment.