We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 053526e commit ccf0037Copy full SHA for ccf0037
1 file changed
src/hdx/facades/infer_arguments.py
@@ -71,6 +71,9 @@ def facade(projectmainfn: Callable[[Any], None], **kwargs: Any):
71
case "str" | "Path" | "Path | str":
72
param_type = "str | None"
73
default = None
74
+ case "Optional[bool]" | "bool | None":
75
+ param_type = "bool | None"
76
+ default = None
77
case "bool":
78
default = False
79
case _:
0 commit comments