You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
need_to_return_parquet_files<-FALSE# will change in the if below if needed
341
341
if (save_format=="parquet") {
342
-
if (overwrite==FALSE|overwrite=='update') {
342
+
if (overwrite==FALSE|overwrite=="update") {
343
343
# check if there are any existing parquet files in the save_path
344
344
parquet_files<-fs::dir_ls(
345
345
save_path,
@@ -355,14 +355,14 @@ spod_convert <- function(
355
355
"What should be done? [D]elete all existing files in the target folder and convert all requested data from scratch? [U]pdate the folder with any new data while keeping the existing files? [C]ancel and quit? (D/U/C): "
356
356
)
357
357
}
358
-
if (overwrite=='update'& length(parquet_files) >0) {
358
+
if (overwrite=="update"& length(parquet_files) >0) {
0 commit comments