We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75dd664 commit 3673feaCopy full SHA for 3673fea
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
+ elif type_ is type(None): # noqa: 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