nixos/etc: fix type checking of build-composefs-dump.py

This commit is contained in:
nikstur 2024-01-28 01:02:15 +01:00
parent b87fbb96ad
commit 92b98478a8

View File

@ -83,8 +83,8 @@ class ComposefsPath:
return " ".join(line_list)
def eprint(*args, **kwargs) -> None:
print(args, **kwargs, file=sys.stderr)
def eprint(*args: Any, **kwargs: Any) -> None:
print(*args, **kwargs, file=sys.stderr)
def leading_directories(path: str) -> list[str]: