Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cycleops/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def create(
variables: Optional[List[str]] = typer.Option(
None,
"--variable",
help="Variable key-value pairs (e.g. container.image=nginx:1.23).",
help="Variable key-value pairs (e.g. containers.0.image=nginx:1.23).",
),
) -> None:
"""
Expand Down Expand Up @@ -103,7 +103,7 @@ def update(
variables: Optional[List[str]] = typer.Option(
None,
"--variable",
help="Variable key-value pairs (e.g. container.image=nginx:1.23).",
help="Variable key-value pairs (e.g. containers.0.image=nginx:1.23).",
),
) -> None:
"""
Expand Down