Skip to content

Commit

Permalink
Merge pull request #7783 from radarhere/lint
Browse files Browse the repository at this point in the history
Lint fix
  • Loading branch information
hugovk committed Feb 7, 2024
2 parents 811dd15 + 91645f9 commit 5bd8fd1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Tests/test_imagedraw.py
Original file line number Diff line number Diff line change
Expand Up @@ -776,9 +776,11 @@ def test_rectangle_translucent_outline(bbox: Coords) -> None:
[(10, 20, 190, 180), ([10, 20], [190, 180]), ((10, 20), (190, 180))],
)
def test_rounded_rectangle(
xy: tuple[int, int, int, int]
| tuple[list[int]]
| tuple[tuple[int, int], tuple[int, int]]
xy: (
tuple[int, int, int, int]
| tuple[list[int]]
| tuple[tuple[int, int], tuple[int, int]]
)
) -> None:
# Arrange
im = Image.new("RGB", (200, 200))
Expand Down

0 comments on commit 5bd8fd1

Please sign in to comment.