diff --git a/pkgs/clan-cli/clan_cli/flake.py b/pkgs/clan-cli/clan_cli/flake.py index 7546a7a3e..e9226b2d3 100644 --- a/pkgs/clan-cli/clan_cli/flake.py +++ b/pkgs/clan-cli/clan_cli/flake.py @@ -55,7 +55,7 @@ def split_selector(selector: str) -> list[Selector]: @dataclass class FlakeCacheEntry: """ - a recrusive structure to store the cache, with a value and a selector + a recursive structure to store the cache, with a value and a selector """ def __init__( diff --git a/pkgs/clan-cli/clan_cli/inventory/__init__.py b/pkgs/clan-cli/clan_cli/inventory/__init__.py index ea8d65278..9dba86ddf 100644 --- a/pkgs/clan-cli/clan_cli/inventory/__init__.py +++ b/pkgs/clan-cli/clan_cli/inventory/__init__.py @@ -243,7 +243,7 @@ def calc_patches( msg = f"Type mismatch for key '{update_key}'. Cannot update {type(all_values_flat.get(update_key))} with {type(update_data)}" raise ClanError(msg) - # Handle list seperation + # Handle list separation if isinstance(update_data, list): duplicates = find_duplicates(update_data) if duplicates: diff --git a/pkgs/clan-cli/tests/test_vars_deployment.py b/pkgs/clan-cli/tests/test_vars_deployment.py index 88229028f..e8a0f35d4 100644 --- a/pkgs/clan-cli/tests/test_vars_deployment.py +++ b/pkgs/clan-cli/tests/test_vars_deployment.py @@ -104,7 +104,7 @@ def test_vm_deployment( vm2 = stack.enter_context(spawn_vm(vm2_config, stdin=subprocess.DEVNULL)) qga_m1 = stack.enter_context(vm1.qga_connect()) qga_m2 = stack.enter_context(vm2.qga_connect()) - # run these always succesfull commands to make sure all vms have started before continuing + # run these always successful commands to make sure all vms have started before continuing qga_m1.run(["echo"]) qga_m2.run(["echo"]) # check my_secret is deployed