Skip to content
Merged
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
5 changes: 1 addition & 4 deletions archinstall/tui/curses_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -705,10 +705,7 @@ def __init__(
self._interrupt_warning = reset_warning_msg
self._header = header

# TODO: Remove the inline annotation after upgrading to mypy 1.16.0
# The inline annotation is needed to avoid a crash in 1.15.0:
# RuntimeError: Partial type "<partial list[?]>" cannot be checked with "issubtype()"
self._header_entries: list[ViewportEntry] = []
self._header_entries = []
if header:
self._header_entries = self.get_header_entries(header)

Expand Down