Skip to content

Commit cdffe8a

Browse files
committed
revert reformatting
1 parent 296066e commit cdffe8a

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

fgpyo/util/types.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,7 @@ def make_literal_parser(
139139

140140
def is_list_like(type_: type) -> bool:
141141
"""Returns true if the value is a list or list like object"""
142-
return typing.get_origin(type_) in [
143-
list,
144-
collections.abc.Iterable,
145-
collections.abc.Sequence,
146-
]
142+
return typing.get_origin(type_) in [list, collections.abc.Iterable, collections.abc.Sequence]
147143

148144

149145
def none_parser(value: str) -> Literal[None]:

0 commit comments

Comments
 (0)