(
text: str = "",
short: list[str] | None = None,
long: list[str] | None = None,
has_argument: bool = False,
)
| 16 | |
| 17 | |
| 18 | def _opt( |
| 19 | text: str = "", |
| 20 | short: list[str] | None = None, |
| 21 | long: list[str] | None = None, |
| 22 | has_argument: bool = False, |
| 23 | ) -> Option: |
| 24 | return Option( |
| 25 | text=text, short=short or [], long=long or [], has_argument=has_argument |
| 26 | ) |
| 27 | |
| 28 | |
| 29 | class TestDedupOptions: |
no test coverage detected