Skip to content

Commit

Permalink
only check for update if not delay_load
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgigante committed Nov 24, 2018
1 parent 2aabea9 commit a00f465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rmagic/R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ load_pymagic <- function(delay_load = FALSE) {
message("reticulate::conda_remove('r-reticulate')")
}
}
} else {
} else if (!delay_load) {
# successful load
version <- strsplit(pymagic$`__version__`, '\\.')[[1]]
major_version <- 1
Expand Down

0 comments on commit a00f465

Please sign in to comment.