Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
jdidion committed Feb 22, 2024
1 parent 4cbefc0 commit 7239e27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fgpyo/util/tests/test_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

from fgpyo.util import types


def test_is_listlike() -> None:
assert types.is_list_like(List[str])
assert types.is_list_like(Iterable[str])
assert types.is_list_like(Sequence[str])
assert types.is_list_like(Sequence[str])

0 comments on commit 7239e27

Please sign in to comment.