convert-*.py: pathlib.Path exist() --> is_file() or is_dir()

This commit is contained in:
brian khuu 2024-07-14 12:12:23 +10:00
parent abc351c270
commit 144a7ec3a4

View file

@ -99,7 +99,7 @@ class Metadata:
@staticmethod @staticmethod
def load_metadata_override(metadata_override_path: Optional[Path] = None) -> dict[str, Any]: def load_metadata_override(metadata_override_path: Optional[Path] = None) -> dict[str, Any]:
if metadata_override_path is None or not metadata_override_path.exists(): if metadata_override_path is None or not metadata_override_path.is_file():
return {} return {}
with open(metadata_override_path, "r", encoding="utf-8") as f: with open(metadata_override_path, "r", encoding="utf-8") as f:
@ -125,12 +125,12 @@ class Metadata:
@staticmethod @staticmethod
def load_hf_parameters(model_path: Optional[Path] = None) -> dict[str, Any]: def load_hf_parameters(model_path: Optional[Path] = None) -> dict[str, Any]:
if model_path is None or not model_path.exists(): if model_path is None or not model_path.is_dir():
return {} return {}
config_path = model_path / "config.json" config_path = model_path / "config.json"
if not config_path.exists(): if not config_path.is_file():
return {} return {}
with open(config_path, "r", encoding="utf-8") as f: with open(config_path, "r", encoding="utf-8") as f: