From 8cd31d388334e608d8db713d53e15a48dc7aecec Mon Sep 17 00:00:00 2001 From: wlandau Date: Fri, 20 Dec 2024 15:59:09 -0500 Subject: [PATCH] change lookup function --- R/utils_files.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/utils_files.R b/R/utils_files.R index bb46408f..8ade1c01 100644 --- a/R/utils_files.R +++ b/R/utils_files.R @@ -34,7 +34,7 @@ file_info_runtime <- function(x) { !is.null(file_info_exist) && (length(x) > 0L) && all(counter_exist_names(file_info_exist, x)), - .subset2(file_info, x), # nolint + file_info[[x]], file_info(x) ) }