mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
nixos/etc: fix type checking of build-composefs-dump.py
This commit is contained in:
parent
b87fbb96ad
commit
92b98478a8
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue