chore: clean up unreachable pass/else in run_pacman retry loop

This commit is contained in:
2026-07-06 20:08:35 +02:00
parent 023ee01cc2
commit aad3d86af5
@@ -313,9 +313,7 @@ class PMPacman(PackageManager):
host_env_process_output(command)
return
except subprocess.CalledProcessError:
if pacman_count <= self.pacman_num_retries:
pass
else:
if pacman_count > self.pacman_num_retries:
raise
def install(self, pkgs, from_local=False):