Skip to content

Commit

Permalink
fix check?
Browse files Browse the repository at this point in the history
  • Loading branch information
CoryMcCartan committed Mar 26, 2023
1 parent 2209001 commit fa0f871
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ Description: Provides a 'causal_tbl' class for causal inference. A 'causal_tbl'
Imports:
rlang,
cli,
tibble (>= 3.0.0),
tidyselect,
vctrs,
pillar,
stats
Suggests:
tibble,
dplyr,
knitr,
rmarkdown,
Expand Down
2 changes: 1 addition & 1 deletion R/causal_mod.R
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ causal_mod <- function(x, idx = NULL) {
cli_abort("{.arg x} does not have a {.fn fitted} method.")
}
if (is.null(idx)) {
nas <- na.action(x)
nas <- stats::na.action(x)
if (is.null(nas)) {
idx = seq_along(fitted)
} else {
Expand Down

0 comments on commit fa0f871

Please sign in to comment.