Skip to content

Commit

Permalink
Fix return class of check_model() patchwork (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwiernik committed Apr 18, 2024
1 parent 7af4340 commit 5682cc0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/plot.check_model.R
Original file line number Diff line number Diff line change
Expand Up @@ -276,10 +276,10 @@ plot.see_check_model <- function(x,
if (panel) {
pw <- plots(p, n_columns = n_columns)
.safe_print_plots(pw, ...)
invisible(pw)
return(invisible(pw))
} else {
return(p)
}

p
}


Expand Down

0 comments on commit 5682cc0

Please sign in to comment.