Skip to content

Commit

Permalink
remove dependency on ellipsis (#1179)
Browse files Browse the repository at this point in the history
  • Loading branch information
olivroy authored Dec 5, 2023
1 parent ac74568 commit ab8c3f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,6 @@ Depends:
Imports:
backports,
dplyr (>= 1.0.0),
ellipsis,
generics (>= 0.0.2),
glue,
lifecycle,
Expand Down
4 changes: 2 additions & 2 deletions R/utilities.R
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ augment_newdata <- function(x, data, newdata, .se_fit, interval = NULL, ...) {
# this version adds a terms column
broom_confint <- function(x, ...) {
# warn on arguments silently being ignored
ellipsis::check_dots_used()
rlang::check_dots_used()
ci <- suppressMessages(confint(x, ...))

# confint called on models with a single predictor
Expand All @@ -503,7 +503,7 @@ broom_confint <- function(x, ...) {
# this version adds a terms column
broom_confint_terms <- function(x, ...) {
# warn on arguments silently being ignored
ellipsis::check_dots_used()
rlang::check_dots_used()
ci <- suppressMessages(confint(x, ...))

# confint called on models with a single predictor
Expand Down

0 comments on commit ab8c3f3

Please sign in to comment.