Skip to content

Commit

Permalink
nixos/etc: fix type checking of build-composefs-dump.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nikstur committed Jan 28, 2024
1 parent b87fbb9 commit 92b9847
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nixos/modules/system/etc/build-composefs-dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ def write_line(self) -> str:
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]:
Expand Down

0 comments on commit 92b9847

Please sign in to comment.