[tools] fail with warning when OMIM_PATH doesn't exist

otherwise it fails later when trying to access `{OMIM_PATH}/data`, with the unhelpful message "AssertError: USER_RESOURCE_PATH is not None"
Signed-off-by: Harry Bond <me@hbond.xyz>
This commit is contained in:
Harry Bond 2024-05-04 14:21:21 +01:00 committed by Alexander Borsuk
parent ada5327b4a
commit fde252347f

View file

@ -212,6 +212,8 @@ def init(default_settings_path: AnyStr):
)
NODE_STORAGE = cfg.get_opt("Generator tool", "NODE_STORAGE", NODE_STORAGE)
assert os.path.exists(OMIM_PATH) is True, f"Can't find OMIM_PATH (set to {OMIM_PATH})"
if not os.path.exists(USER_RESOURCE_PATH):
from data_files import find_data_files