Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Aug 9, 2024
1 parent 1da0462 commit 0f7dbf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/check_dag.R
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ print.check_dag <- function(x, ...) {
# options for minimal adjustements, so we check here if any of the minimal
# adjustements are currently sufficient
missing_adjustments <- vapply(out$minimal_adjustments, function(i) {
!is.null(out$current_adjustments) && all(out$current_adjustments %in% i)
!is.null(out$current_adjustments) && all(i %in% out$current_adjustments)
}, logical(1))

# build message with check results for effects -----------------------
Expand Down

0 comments on commit 0f7dbf7

Please sign in to comment.