Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Gobot1234 authored Aug 13, 2024
1 parent 7c68453 commit 243ed4e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_typing_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,6 @@ def test_no_typing_311_typing_compiler():
assert compiler.iterable("str") == '"Iterable[str]"'
assert compiler.async_iterable("str") == '"AsyncIterable[str]"'
assert compiler.async_iterator("str") == '"AsyncIterator[str]"'
assert compiler.imports() == {"collections.abc": {"Iterable", "AsyncIterable", "AsyncIterator"}}
assert compiler.imports() == {
"collections.abc": {"Iterable", "AsyncIterable", "AsyncIterator"}
}

0 comments on commit 243ed4e

Please sign in to comment.