Skip to content

Commit 59e45ec

Browse files
anjosYannick-Dayer
authored andcommitted
fix(click): minor regression fix to support complex python objects
1 parent 1d2a53f commit 59e45ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clapper/click.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ def __init__(
377377
(type is None)
378378
and (kwargs.get("default") is None)
379379
and (count is False)
380-
and (is_flag is UNSET)
380+
and (is_flag is None)
381381
):
382382
type = CustomParamType() # noqa: A001
383383

0 commit comments

Comments
 (0)