Skip to content

Commit

Permalink
drop unique_output_types from validate_ensemble_inputs returns
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Actions CI committed Aug 4, 2023
1 parent 448d818 commit 99dc0e7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions R/validate_ensemble_inputs.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
#' are `mean`, `quantile`, `cdf`, `pmf`, and `sample`.
#'
#' @return a list of validated model inputs: `model_outputs` object of class
#' `model_output_df`, optional `weights` data frame, `task_id_cols` character
#' vector, and `unique_output_types` character vector
#' `model_output_df`, optional `weights` data frame, and `task_id_cols`
#' character vector
#'
#' @NoRd

Expand Down Expand Up @@ -103,7 +103,6 @@ validate_ensemble_inputs <- function(model_outputs, weights=NULL,

validated_inputs <- list(model_outputs = model_outputs,
weights = weights,
task_id_cols = task_id_cols,
unique_output_types = unique_output_types)
task_id_cols = task_id_cols)
return (validated_inputs)
}

0 comments on commit 99dc0e7

Please sign in to comment.