Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Nov 20, 2023
1 parent 189416e commit 9516cb7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions R/methods_survey.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,21 @@ model_parameters.svyglm <- function(model,
verbose = verbose
)

out <- .model_parameters_generic(
model = model,
args <- list(

Check warning on line 29 in R/methods_survey.R

View workflow job for this annotation

GitHub Actions / lint-changed-files / lint-changed-files

file=R/methods_survey.R,line=29,col=3,[object_overwrite_linter] 'args' is an exported object from package 'base'. Avoid re-using such symbols.
model,
ci = ci,
ci_method = ci_method,
bootstrap = FALSE,
iterations = 1000,
merge_by = "Parameter",
standardize = standardize,
exponentiate = exponentiate,
p_adjust = p_adjust,
keep_parameters = keep,
drop_parameters = drop,
summary = summary,
...
verbose = verbose
)
args <- c(args, dot_args)

Check warning on line 42 in R/methods_survey.R

View workflow job for this annotation

GitHub Actions / lint-changed-files / lint-changed-files

file=R/methods_survey.R,line=42,col=3,[object_overwrite_linter] 'args' is an exported object from package 'base'. Avoid re-using such symbols.
out <- do.call(".extract_parameters_generic", args)

attr(out, "object_name") <- insight::safe_deparse_symbol(substitute(model))
out
Expand Down

0 comments on commit 9516cb7

Please sign in to comment.