Fixed type hint

This commit is contained in:
Andrew Murray 2024-11-05 17:18:46 +11:00
parent 82199efbf7
commit 2d23a84049

View File

@ -1001,7 +1001,7 @@ def debug_build() -> bool:
return hasattr(sys, "gettotalrefcount") or FUZZING_BUILD
files = ["src/_imaging.c"]
files: list[str | os.PathLike[str]] = ["src/_imaging.c"]
for src_file in _IMAGING:
files.append("src/" + src_file + ".c")
for src_file in _LIB_IMAGING: