Skip to content

Commit

Permalink
Add noqa for overlength line
Browse files Browse the repository at this point in the history
  • Loading branch information
pwicks86 committed Oct 10, 2024
1 parent e197c57 commit 974a6e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mkosi/qemu.py
Original file line number Diff line number Diff line change
Expand Up @@ -1282,7 +1282,7 @@ def add_virtiofs_mount(
cache = f"cache.writeback=on,cache.direct={yes_no(direct)},cache.no-flush={yes_no(ephemeral)},aio=io_uring" # noqa: E501
cmdline += [
"-drive", f"if=none,id=mkosi,file={fname},format=raw,discard=on,{cache}",
"-device", f"scsi-{'cd' if config.qemu_cdrom else 'hd'},drive=mkosi,bootindex=1{',removable=on' if config.qemu_removable else ''}",
"-device", f"scsi-{'cd' if config.qemu_cdrom else 'hd'},drive=mkosi,bootindex=1{',removable=on' if config.qemu_removable else ''}", # noqa: E501
] # fmt: skip

if config.qemu_swtpm == ConfigFeature.enabled or (
Expand Down

0 comments on commit 974a6e6

Please sign in to comment.