nixos/etc: fix type checking of build-composefs-dump.py
This commit is contained in:
parent
b87fbb96ad
commit
92b98478a8
@ -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]:
|
||||
|
Loading…
Reference in New Issue
Block a user