Skip to content

Commit

Permalink
fix: don't create a list for immediate iterable
Browse files Browse the repository at this point in the history
  • Loading branch information
lavafroth authored Aug 11, 2023
1 parent 25df08b commit 02f0d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archinstall/lib/interactions/disk_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def suggest_multi_disk_layout(
if choice.value == Menu.yes():
mount_options.append('compress=zstd')

device_paths = ', '.join([str(d.device_info.path) for d in devices])
device_paths = ', '.join(str(d.device_info.path) for d in devices)

debug(f"Suggesting multi-disk-layout for devices: {device_paths}")
debug(f"/root: {root_device.device_info.path}")
Expand Down

0 comments on commit 02f0d29

Please sign in to comment.