Skip to content

Commit

Permalink
Rename help functions to check_setup()
Browse files Browse the repository at this point in the history
  • Loading branch information
stellabelin committed Dec 10, 2024
1 parent cadbfde commit 93e79af
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 @@ -17,7 +17,7 @@ check_setup <- function() {
}
}

check_python <- function() {
check_setup_python <- function() {
py <- reticulate::py_discover_config()
if (is.null(py)) {
print_status('fail', 'No Python found')
Expand All @@ -33,7 +33,7 @@ check_python <- function() {
return(TRUE)
}

check_pharmpy <- function() {
check_setup_pharmpy <- function() {
pharmpy_avail <- reticulate::py_module_available('pharmpy')
if (isFALSE(pharmpy_avail)) {
print_status('fail', 'Could not find Pharmpy installation')
Expand Down

0 comments on commit 93e79af

Please sign in to comment.