Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
allenporter committed Apr 20, 2024
1 parent b8d6033 commit c255e1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions flux_local/git_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit c255e1a

Please sign in to comment.