Skip to content

Commit

Permalink
EOD
Browse files Browse the repository at this point in the history
  • Loading branch information
richelbilderbeek committed Jan 5, 2025
1 parent a5fe6fa commit 9c7bbb0
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion R/rename_inference_model_filenames.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,20 @@ rename_inference_model_filenames <- function( # nolint long function name indeed
inference_model,
rename_fun
) {
check_inference_model(inference_model)
# tryCatch(
# check_inference_model(inference_model),
# error = function(error_msg) {
# if (
# stringr::str_detect(error_msg,
# "Tipdating filename not found at path",
# negate = TRUE
# )
# ) {
# stop(error_msg)
# }
# }
# )

check_rename_fun(rename_fun)

# MCMC
Expand Down

0 comments on commit 9c7bbb0

Please sign in to comment.