Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit d2c7044

Browse files
committed
addressing coderabbit review
1 parent 12c34a0 commit d2c7044

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • packages/jumpstarter-cli/jumpstarter_cli

packages/jumpstarter-cli/jumpstarter_cli/common.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
from pytimeparse2 import parse as parse_duration
77

88

9-
def _opt_selector_callback(ctx, param, value):
9+
def _opt_selector_callback(_ctx, _param, value):
10+
"""Combine multiple selector values into a single comma-separated string."""
1011
return ",".join(value) if value else None
1112

1213
opt_selector = click.option(

0 commit comments

Comments
 (0)