We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4205de6 commit 36bc2f1Copy full SHA for 36bc2f1
fgpyo/util/inspect.py
@@ -228,7 +228,7 @@ def dict_parse(dict_string: str) -> Dict[Any, Any]:
228
return types.make_enum_parser(type_)
229
elif types.is_constructible_from_str(type_):
230
return functools.partial(type_)
231
- elif type_ is type(None): # type: ignore[E721]
+ elif type_ is type(None): # type: ignore[E721]
232
return functools.partial(types.none_parser)
233
elif types.get_origin_type(type_) is Union:
234
return types.make_union_parser(
0 commit comments