Skip to content

Commit

Permalink
Complete formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lycantropos committed Jan 10, 2021
1 parent 182b3e8 commit 45e43b2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/planar_tests/test_segments_intersections.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ def test_basic(segments: List[Segment]) -> None:
result = segments_intersections(segments)

assert isinstance(result, dict)
assert all(is_point(key)
for key in result.keys())
assert all(isinstance(value, set)
for value in result.values())
assert all(is_point(key) for key in result.keys())
assert all(isinstance(value, set) for value in result.values())
assert all(isinstance(element, tuple)
for value in result.values()
for element in value)
Expand Down

0 comments on commit 45e43b2

Please sign in to comment.