Skip to content

Commit

Permalink
Use correct helper functions in check_setup()
Browse files Browse the repository at this point in the history
  • Loading branch information
stellabelin committed Dec 10, 2024
1 parent 93e79af commit 5f487ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/check_setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
#' @export
check_setup <- function() {
cli::cli_h3("Checking Python setup")
py_okay <- check_python()
py_okay <- check_setup_python()
if (py_okay) {
cli::cli_h3("Checking Pharmpy and pharmr")
pharmpy_okay <- check_pharmpy()
pharmpy_okay <- check_setup_pharmpy()
}
}

Expand Down

0 comments on commit 5f487ba

Please sign in to comment.