Clan-cli: remove unused debug flag in list machine

This commit is contained in:
Johannes Kirschbauer
2024-08-07 12:17:32 +02:00
parent 7e9214053f
commit 28167c5156

View File

@@ -40,7 +40,7 @@ def inspect_flake(flake_url: str | Path, machine_name: str) -> FlakeConfig:
system = config["system"]
# Check if the machine exists
machines: list[str] = list_nixos_machines(flake_url, False)
machines: list[str] = list_nixos_machines(flake_url)
if machine_name not in machines:
raise ClanError(
f"Machine {machine_name} not found in {flake_url}. Available machines: {', '.join(machines)}"