Commit f26409b
authored
fix(cli): resolve duplicate -f short option conflict in projects list (#11)
## Summary
This PR fixes a duplicate short option (`-f`) conflict in the `projects
list` command.
Previously:
- `--filter` used `-f`
- `--format` also used `-f`
This caused Click/Typer to emit a warning:
> UserWarning: The parameter -f is used more than once. Remove its
duplicate as parameters should be unique.
Now:
- `--filter` uses `-F`
--format keeps `-f` (common CLI convention for format)
No breaking changes for long options.
---
## Testing
- [x] Tested `conviso projects list --help`
- [x] Tested with `--filter`
- [x] Tested with `--format`
- [x] Confirmed warning no longer appears
---
## Before Fix (Warning Example)
2 files changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
0 commit comments