Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion archinstall/lib/disk/device_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def get_btrfs_info(
# "fsroots": ["/@log", "/@home", "/@"...]
# we'll thereby map the fsroot, which are the mounted filesystem roots
# to the corresponding mountpoints
btrfs_subvol_info = dict(zip(lsblk_info.fsroots, lsblk_info.mountpoints))
btrfs_subvol_info = dict(zip(lsblk_info.fsroots, lsblk_info.mountpoints, strict=True))

# ID 256 gen 16 top level 5 path @
for line in result.splitlines():
Expand Down
2 changes: 1 addition & 1 deletion archinstall/lib/menu/menu_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _table_to_data_mapping(self, data: list[ValueT]) -> dict[str, ValueT | str |
# these are the header rows of the table
display_data = {f'{rows[0]}': None, f'{rows[1]}': None}

for row, entry in zip(rows[2:], data):
for row, entry in zip(rows[2:], data, strict=True):
display_data[row] = entry

if self._additional_options:
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,6 @@ select = [
ignore = [
"B008", # function-call-in-default-argument
"B904", # raise-without-from-inside-except
"B905", # zip-without-explicit-strict
"B909", # loop-iterator-mutation
"COM812", # missing-trailing-comma
"PLC0415", # import-outside-top-level
Expand Down