Skip to content

Commit 91645f9

Browse files
committed
Lint fix
1 parent 811dd15 commit 91645f9

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

Tests/test_imagedraw.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -776,9 +776,11 @@ def test_rectangle_translucent_outline(bbox: Coords) -> None:
776776
[(10, 20, 190, 180), ([10, 20], [190, 180]), ((10, 20), (190, 180))],
777777
)
778778
def test_rounded_rectangle(
779-
xy: tuple[int, int, int, int]
780-
| tuple[list[int]]
781-
| tuple[tuple[int, int], tuple[int, int]]
779+
xy: (
780+
tuple[int, int, int, int]
781+
| tuple[list[int]]
782+
| tuple[tuple[int, int], tuple[int, int]]
783+
)
782784
) -> None:
783785
# Arrange
784786
im = Image.new("RGB", (200, 200))

0 commit comments

Comments
 (0)