Skip to content

Commit 9d940dd

Browse files
committed
Actually don't need to handle Optional[bool] here as not one of Configuration's parameters
1 parent 5e8e4e7 commit 9d940dd

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

src/hdx/facades/infer_arguments.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,6 @@ def facade(projectmainfn: Callable[[Any], None], **kwargs: Any):
7171
case "str" | "Path" | "Path | str":
7272
param_type = "str | None"
7373
default = None
74-
case "Optional[bool]" | "bool | None":
75-
param_type = "bool | None"
76-
default = None
7774
case "bool":
7875
default = False
7976
case _:

0 commit comments

Comments
 (0)