Skip to content

Commit

Permalink
Update lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewCane committed Oct 26, 2024
1 parent 76f82d5 commit 07642d0
Show file tree
Hide file tree
Showing 3 changed files with 361 additions and 39 deletions.
3 changes: 2 additions & 1 deletion cdk8s_cli/cdk8s_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from kubernetes.utils import FailToCreateError, create_from_directory
from more_itertools import collapse
from rich.console import Console
from yaml import load_all, SafeLoader
from yaml import SafeLoader, load_all


class FailToSynthError(Exception):
Expand Down Expand Up @@ -87,6 +87,7 @@ def _list(self, app: App, name: Optional[str]):
if self.args.debug:
self.console.log("Manifests:", manifests)
manifest_count = len(manifests)

for n, manifest in enumerate(manifests):
connector = "├──" if n < manifest_count - 1 else "└──"
pipe = "│" if n < manifest_count - 1 else " "
Expand Down
Loading

0 comments on commit 07642d0

Please sign in to comment.