Skip to content
Open
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/partitioning_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def get_part_mods(disk_segments: list[DiskSegment]) -> list[PartitionModificatio
return [s.segment for s in disk_segments if isinstance(s.segment, PartitionModification)]

def show(self) -> DeviceModification | None:
disk_segments = super().run()
disk_segments = super()._run()

if not disk_segments:
return None
Expand Down
2 changes: 1 addition & 1 deletion archinstall/lib/disk/subvolume_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(
)

def show(self) -> list[SubvolumeModification] | None:
return super().run()
return super()._run()

@override
def selected_action_display(self, selection: SubvolumeModification) -> str:
Expand Down
2 changes: 1 addition & 1 deletion archinstall/lib/menu/list_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def is_last_choice_cancel(self) -> bool:
return self._last_choice == self._cancel_action
return False

def run(self) -> list[ValueT] | None:
def _run(self) -> list[ValueT] | None:
additional_options = self._base_actions + self._terminate_actions

while True:
Expand Down
4 changes: 2 additions & 2 deletions archinstall/lib/mirrors.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(self, custom_repositories: list[CustomRepository]):
)

def show(self) -> list[CustomRepository] | None:
return super().run()
return super()._run()

@override
def selected_action_display(self, selection: CustomRepository) -> str:
Expand Down Expand Up @@ -162,7 +162,7 @@ def __init__(self, custom_servers: list[CustomServer]):
)

def show(self) -> list[CustomServer] | None:
return super().run()
return super()._run()

@override
def selected_action_display(self, selection: CustomServer) -> str:
Expand Down
2 changes: 1 addition & 1 deletion archinstall/lib/network/network_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(self, prompt: str, preset: list[Nic]):
)

def show(self) -> list[Nic] | None:
return super().run()
return super()._run()

@override
def selected_action_display(self, selection: Nic) -> str:
Expand Down
2 changes: 1 addition & 1 deletion archinstall/lib/user/user_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self, prompt: str, lusers: list[User]):
)

def show(self) -> list[User] | None:
return super().run()
return super()._run()

@override
def selected_action_display(self, selection: User) -> str:
Expand Down