From c255e1add67586baca93a1904d76e66c50a27351 Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Sat, 20 Apr 2024 21:15:51 +0000 Subject: [PATCH] Fix spelling --- flux_local/git_repo.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flux_local/git_repo.py b/flux_local/git_repo.py index 50eab8aa..249d64c2 100644 --- a/flux_local/git_repo.py +++ b/flux_local/git_repo.py @@ -392,9 +392,9 @@ async def build( cmd = await cmd.stash() self._cache[key] = cmd return cmd - + def remove(self, kustomization: Kustomization) -> None: - """Remove the kustomization vlaue from the cache.""" + """Remove the kustomization value from the cache.""" target_key = f"{kustomization.namespaced_name} @" for key in list(self._cache.keys()): if key.startswith(target_key): @@ -740,8 +740,8 @@ async def update_kustomization(cluster: Cluster) -> None: values.expand_value_references(helm_release, kustomization) for helm_release in kustomization.helm_releases ] - if kustomization.name == 'apps': - _LOGGER.warning("apps = %s", kustomization.helm_releases ) + if kustomization.name == "apps": + _LOGGER.warning("apps = %s", kustomization.helm_releases) # Visit Helm resources for cluster in clusters: