diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index dede0bcb..0fbef4e9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -20,13 +20,13 @@ repos: - id: sort-simple-yaml - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: 'v0.9.3' + rev: 'v0.11.2' hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] - id: ruff-format - repo: https://github.com/codespell-project/codespell - rev: v2.4.0 + rev: v2.4.1 hooks: - id: codespell additional_dependencies: ["tomli"] diff --git a/src/dvc_data/hashfile/__init__.py b/src/dvc_data/hashfile/__init__.py index 6086608e..35609add 100644 --- a/src/dvc_data/hashfile/__init__.py +++ b/src/dvc_data/hashfile/__init__.py @@ -25,7 +25,7 @@ def check(odb: "HashFileDB", obj: "HashFile", **kwargs): def load(odb: "HashFileDB", hash_info: "HashInfo") -> "HashFile": if hash_info.isdir: return Tree.load(odb, hash_info) - return odb.get(cast(str, hash_info.value)) + return odb.get(cast("str", hash_info.value)) def iterobjs(obj: Union["Tree", "HashFile"]) -> Iterator[Union["Tree", "HashFile"]]: diff --git a/src/dvc_data/index/index.py b/src/dvc_data/index/index.py index 2c2df098..283066ad 100644 --- a/src/dvc_data/index/index.py +++ b/src/dvc_data/index/index.py @@ -51,7 +51,7 @@ def from_dict(cls, d: dict[str, dict]) -> "DataIndexEntry": if hash_info: ret.hash_info = HashInfo.from_dict(hash_info) - ret.loaded = cast(bool, d["loaded"]) + ret.loaded = cast("bool", d["loaded"]) return ret @@ -203,7 +203,7 @@ def exists(self, entry: "DataIndexEntry", refresh: bool = False) -> bool: if not entry.hash_info: return False - value = cast(str, entry.hash_info.value) + value = cast("str", entry.hash_info.value) if self.index is None: return self.odb.exists(value) @@ -525,7 +525,7 @@ def _info_from_entry(self, key, entry): return ret def add(self, entry: DataIndexEntry): - self[cast(DataIndexKey, entry.key)] = entry + self[cast("DataIndexKey", entry.key)] = entry @abstractmethod def ls(self, root_key: DataIndexKey, detail=True):