From c51bb52f7562257d3411beaa4f4b07475f8fe1fd Mon Sep 17 00:00:00 2001 From: egillax Date: Wed, 13 Dec 2023 11:29:55 +0100 Subject: [PATCH] fix assignment operator in configurePython --- R/HelperFunctions.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/HelperFunctions.R b/R/HelperFunctions.R index bf5f71b1b..5c9d1ae3f 100644 --- a/R/HelperFunctions.R +++ b/R/HelperFunctions.R @@ -101,9 +101,9 @@ configurePython <- function(envname='PLP', envtype=NULL, condaPythonVersion="3.1 if(is.null(envtype)){ if(getOs()=='windows'){ - envtype=='conda' + envtype <- "conda" } else { - envtype=='python' + envtype <- "python" } }