Skip to content

Commit 22930a9

Browse files
committed
Fixed ruff complaints
1 parent 2b76833 commit 22930a9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

archinstall/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ def _fetch_arch_db() -> None:
4040
try:
4141
Pacman.run('-Sy')
4242
except Exception as e:
43-
error("Failed to sync Arch Linux package database.")
43+
error('Failed to sync Arch Linux package database.')
4444
if 'could not resolve host' in str(e).lower():
45-
error("Most likely due to a missing network connection or DNS issue.")
46-
error("Run archinstall --debug and check /var/log/archinstall/install.log for details.")
45+
error('Most likely due to a missing network connection or DNS issue.')
46+
error('Run archinstall --debug and check /var/log/archinstall/install.log for details.')
4747

4848
debug(f'Failed to sync Arch Linux package database: {e}')
4949
exit(1)

0 commit comments

Comments
 (0)