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/applications/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def pipewire_packages(self) -> list[str]:
def _enable_pipewire(
self,
install_session: Installer,
users: list['User'] | None = None,
users: list[User] | None = None,
) -> None:
if users is None:
return
Expand Down
2 changes: 1 addition & 1 deletion archinstall/lib/applications/application_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ApplicationHandler:
def __init__(self) -> None:
pass

def install_applications(self, install_session: Installer, app_config: ApplicationConfiguration, users: list['User'] | None = None) -> None:
def install_applications(self, install_session: Installer, app_config: ApplicationConfiguration, users: list[User] | None = None) -> None:
if app_config.bluetooth_config and app_config.bluetooth_config.enabled:
BluetoothApp().install(install_session)

Expand Down
2 changes: 1 addition & 1 deletion archinstall/lib/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1942,7 +1942,7 @@ def chown(self, owner: str, path: str, options: list[str] = []) -> bool:
except SysCallError:
return False

def set_vconsole(self, locale_config: 'LocaleConfiguration') -> None:
def set_vconsole(self, locale_config: LocaleConfiguration) -> None:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ruff didn't detect this one for whatever reason.

# use the already set kb layout
kb_vconsole: str = locale_config.kb_layout
# this is the default used in ISO other option for hdpi screens TER16x32
Expand Down
2 changes: 1 addition & 1 deletion archinstall/tui/curses_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def clear_all(self) -> None:
def clear_help_win(self) -> None:
self._help_window.erase()

def _set_help_viewport(self) -> 'Viewport':
def _set_help_viewport(self) -> Viewport:
max_height, max_width = Tui.t().max_yx
height = max_height - 10

Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@ ignore = [
"RUF039", # unraw-re-pattern
"RUF051", # if-key-in-dict-del
"RUF067", # non-empty-init-module
"UP037", # quoted-annotation
"W191", # tab-indentation
]

Expand Down