From 8a358a062c03904681a8a0a9357e774e56d92c08 Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 25 Oct 2023 12:00:16 +0200 Subject: [PATCH] fix --- R/check_model.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/check_model.R b/R/check_model.R index 5e7567d7f..80f14d2b0 100644 --- a/R/check_model.R +++ b/R/check_model.R @@ -331,7 +331,7 @@ check_model.model_fit <- function(x, # compile plots for checks of linear models ------------------------ -.check_assumptions_linear <- function(model, model_info, verbose = TRUE) { +.check_assumptions_linear <- function(model, model_info, verbose = TRUE, ...) { dat <- list() dat$VIF <- .diag_vif(model, verbose = verbose) @@ -389,7 +389,7 @@ check_model.model_fit <- function(x, # compile plots for checks of Bayesian models ------------------------ -.check_assumptions_stan <- function(model) { +.check_assumptions_stan <- function(model, ...) { if (inherits(model, "brmsfit")) { # check if brms can be loaded