Update pathspec to 1.0.0 (#15234)

This commit is contained in:
Sebastian Rittau
2026-01-08 10:47:43 +01:00
committed by GitHub
parent 9eb6c14846
commit a99e8e42d5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -233,7 +233,7 @@ else:
@functools.cache
def get_gitignore_spec() -> pathspec.PathSpec:
with GITIGNORE_PATH.open(encoding="UTF-8") as f:
return pathspec.GitIgnoreSpec.from_lines(f)
return pathspec.GitIgnoreSpec.from_lines(f) # pyright: ignore[reportUnknownMemberType,reportUnknownVariableType]
def spec_matches_path(spec: pathspec.PathSpec, path: Path) -> bool: