Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
jdidion committed Feb 21, 2024
1 parent 4205de6 commit 36bc2f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fgpyo/util/inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def dict_parse(dict_string: str) -> Dict[Any, Any]:
return types.make_enum_parser(type_)
elif types.is_constructible_from_str(type_):
return functools.partial(type_)
elif type_ is type(None): # type: ignore[E721]
elif type_ is type(None): # type: ignore[E721]
return functools.partial(types.none_parser)
elif types.get_origin_type(type_) is Union:
return types.make_union_parser(
Expand Down

0 comments on commit 36bc2f1

Please sign in to comment.