From dd888f89e60a986e030ad3d6ebdf081f986e4201 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Mon, 25 Mar 2024 05:19:52 -0500 Subject: assert_paths_exist: make throw_error optional --- gn3/fs_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gn3/fs_helpers.py b/gn3/fs_helpers.py index c2c240c..74e7ada 100644 --- a/gn3/fs_helpers.py +++ b/gn3/fs_helpers.py @@ -13,7 +13,7 @@ from typing import List from typing import ValuesView from werkzeug.utils import secure_filename -def assert_paths_exist(paths: ValuesView) -> bool: +def assert_paths_exist(paths: ValuesView, throw_error: bool = True) -> bool: """Given a list of PATHS, throw error if any of them do not exist.""" for path in paths: if not os.path.isfile(path): -- cgit v1.2.3