Skip to content

Commit

Permalink
fix assignment operator in configurePython
Browse files Browse the repository at this point in the history
  • Loading branch information
egillax committed Dec 13, 2023
1 parent 325328b commit c51bb52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/HelperFunctions.R
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ configurePython <- function(envname='PLP', envtype=NULL, condaPythonVersion="3.1

if(is.null(envtype)){
if(getOs()=='windows'){
envtype=='conda'
envtype <- "conda"

Check warning on line 104 in R/HelperFunctions.R

View check run for this annotation

Codecov / codecov/patch

R/HelperFunctions.R#L104

Added line #L104 was not covered by tests
} else {
envtype=='python'
envtype <- "python"

Check warning on line 106 in R/HelperFunctions.R

View check run for this annotation

Codecov / codecov/patch

R/HelperFunctions.R#L106

Added line #L106 was not covered by tests
}
}

Expand Down

0 comments on commit c51bb52

Please sign in to comment.