Skip to content

Commit 45fef77

Browse files
committed
fix
1 parent b0c7ca8 commit 45fef77

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: parameters
33
Title: Processing of Model Parameters
4-
Version: 0.24.2.9
4+
Version: 0.24.2.10
55
Authors@R:
66
c(person(given = "Daniel",
77
family = "Lüdecke",
@@ -225,4 +225,4 @@ Config/testthat/edition: 3
225225
Config/testthat/parallel: true
226226
Config/Needs/website: easystats/easystatstemplate
227227
Config/rcmdcheck/ignore-inconsequential-notes: true
228-
Remotes: easystats/insight
228+
Remotes: easystats/insight, easystats/bayestestR

R/group_level_total.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
)
138138

139139
# select parameters to keep. We want all intercepts, and all random slopes
140-
components <- .safe(insight::find_auxiliary(x))
140+
components <- insight::find_auxiliary(x, verbose = FALSE)
141141
# standard components
142142
parameters_to_keep <- params$Parameter %in% c("Intercept", random_slopes$random)
143143
parameters_to_keep <- parameters_to_keep |

R/utils_format.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@
588588
model <- .get_object(x)
589589
# if yes, extract distributional parameters
590590
if (!is.null(model)) {
591-
dpars <- .safe(insight::find_auxiliary(model))
591+
dpars <- insight::find_auxiliary(model, verbose = FALSE)
592592
# if model has any distributional parameters, check if it's fixed or random
593593
# and create component header
594594
if (!is.null(dpars)) {

0 commit comments

Comments
 (0)