mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-25 17:36:30 +03:00
Return None in match_best_version if not path exists.
This commit is contained in:
parent
2516382106
commit
5e923b9bfa
|
@ -53,6 +53,8 @@ def or_(val1, val2):
|
|||
|
||||
def match_best_version(target_name, target_version, path):
|
||||
path = path if not isinstance(path, basestring) else pathlib.Path(path)
|
||||
if not path.exists():
|
||||
return None
|
||||
matches = []
|
||||
for data_name in path.iterdir():
|
||||
name, version = split_data_name(data_name.parts[-1])
|
||||
|
|
Loading…
Reference in New Issue
Block a user