[tools] fix building of osmctools

Signed-off-by: Harry Bond <endim8@pm.me>
This commit is contained in:
Harry Bond 2023-09-04 14:18:40 +01:00 committed by Viktor Govako
parent 513eaeef85
commit ec770dd7c6

View file

@ -40,7 +40,7 @@ def file_uri_to_path(url : AnyStr) -> AnyStr:
return file_path
def is_executable(fpath: AnyStr) -> bool:
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
return fpath is not None and os.path.isfile(fpath) and os.access(fpath, os.X_OK)
@functools.lru_cache()