Skip to content

Commit

Permalink
rbindlist(use.names = FALSE)
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly committed Sep 18, 2023
1 parent b036b6c commit 2bb62c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/crew_controller.R
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ crew_class_controller <- R6::R6Class(
results <- self$schedule$list()
self$schedule <- old_schedule
out <- lapply(results, monad_tibble)
out <- tibble::new_tibble(data.table::rbindlist(out))
out <- tibble::new_tibble(data.table::rbindlist(out, use.names = FALSE))
out <- out[match(x = names, table = out$name),, drop = FALSE] # nolint
out <- out[!is.na(out$name),, drop = FALSE] # nolint
worker <- .subset2(out, "worker")
Expand Down

0 comments on commit 2bb62c5

Please sign in to comment.