Skip to content

Commit

Permalink
assert_dependency bug + man
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentarelbundock committed Jan 16, 2024
1 parent 9641a92 commit 906b93c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion R/sanity.R
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ check_dependency <- function(library_name) {
}

assert_dependency <- function(library_name){
flag <- isTRUE(check_dependency(library_name))
flag <- check_dependency(library_name)
if (!isTRUE(flag)) stop(flag, call. = FALSE)
return(invisible())
}
Expand Down
4 changes: 2 additions & 2 deletions man/save_tt.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/style_tt.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/tt.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 906b93c

Please sign in to comment.