mypy/grub
This commit is contained in:
parent
68cbe3cd88
commit
d4d6098241
1 changed files with 2 additions and 2 deletions
|
@ -25,8 +25,8 @@ def make_image(
|
||||||
pubkey_path: str | None = None,
|
pubkey_path: str | None = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Make a binary bootable image."""
|
"""Make a binary bootable image."""
|
||||||
args = [
|
args: list[str | tuple[str, ...]] = [
|
||||||
("grub-mkimage",),
|
"grub-mkimage",
|
||||||
("--compress", COMPRESSION),
|
("--compress", COMPRESSION),
|
||||||
("--format", image_format),
|
("--format", image_format),
|
||||||
("--output", image_path),
|
("--output", image_path),
|
||||||
|
|
Loading…
Reference in a new issue