Skip to content

Commit

Permalink
a couple more warning fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinushey committed Jul 26, 2023
1 parent 0dad069 commit 7845d2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/python-virtualenv.R
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ renv_python_virtualenv_update <- function(python) {
# if we're not able to install or update these packages
status <- catch(pip_install(packages, python = python))
if (inherits(status, "error"))
warning(status)
warnify(status)

TRUE

Expand Down
2 changes: 1 addition & 1 deletion R/sandbox.R
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ renv_sandbox_activate <- function(project = NULL) {
# attempt the activation
status <- catch(renv_sandbox_activate_impl(project))
if (inherits(status, "error"))
warning(status)
warnify(status)

# record end time
after <- Sys.time()
Expand Down

0 comments on commit 7845d2c

Please sign in to comment.