Skip to content

Commit 6583b3b

Browse files
pingsutwclaude
andauthored
Fix click option parameter declaration to remove short flag conflict (#3286)
Remove -i short flag from poll_interval parameter to avoid conflicts with other CLI options that may use the same short flag. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude <[email protected]>
1 parent 3ffcd28 commit 6583b3b

File tree

1 file changed

+1
-1
lines changed
  • flytekit/clis/sdk_in_container

1 file changed

+1
-1
lines changed

flytekit/clis/sdk_in_container/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class RunLevelParams(PyFlyteParams):
160160
)
161161
poll_interval: int = make_click_option_field(
162162
click.Option(
163-
param_decls=["-i", "--poll-interval", "poll_interval"],
163+
param_decls=["--poll-interval", "poll_interval"],
164164
required=False,
165165
type=int,
166166
default=None,

0 commit comments

Comments
 (0)