about summary refs log tree commit diff
path: root/nixos/modules/system
diff options
context:
space:
mode:
authornikstur <nikstur@outlook.com>2024-01-28 01:02:15 +0100
committernikstur <nikstur@outlook.com>2024-01-28 01:58:56 +0100
commit92b98478a830a7f7e6f65195aa1b2257798fe423 (patch)
tree40ca5fbcdf9b4a2afaaafc99d567347da5b637ac /nixos/modules/system
parentb87fbb96ad34b559e0c130572b09bc9b49a29b75 (diff)
downloadnixlib-92b98478a830a7f7e6f65195aa1b2257798fe423.tar
nixlib-92b98478a830a7f7e6f65195aa1b2257798fe423.tar.gz
nixlib-92b98478a830a7f7e6f65195aa1b2257798fe423.tar.bz2
nixlib-92b98478a830a7f7e6f65195aa1b2257798fe423.tar.lz
nixlib-92b98478a830a7f7e6f65195aa1b2257798fe423.tar.xz
nixlib-92b98478a830a7f7e6f65195aa1b2257798fe423.tar.zst
nixlib-92b98478a830a7f7e6f65195aa1b2257798fe423.zip
nixos/etc: fix type checking of build-composefs-dump.py
Diffstat (limited to 'nixos/modules/system')
-rw-r--r--nixos/modules/system/etc/build-composefs-dump.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/system/etc/build-composefs-dump.py b/nixos/modules/system/etc/build-composefs-dump.py
index 923d40008b63..a1b922d97369 100644
--- a/nixos/modules/system/etc/build-composefs-dump.py
+++ b/nixos/modules/system/etc/build-composefs-dump.py
@@ -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]: