mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Lint fix
This commit is contained in:
parent
811dd15ca5
commit
91645f9eff
|
@ -776,9 +776,11 @@ def test_rectangle_translucent_outline(bbox: Coords) -> None:
|
||||||
[(10, 20, 190, 180), ([10, 20], [190, 180]), ((10, 20), (190, 180))],
|
[(10, 20, 190, 180), ([10, 20], [190, 180]), ((10, 20), (190, 180))],
|
||||||
)
|
)
|
||||||
def test_rounded_rectangle(
|
def test_rounded_rectangle(
|
||||||
xy: tuple[int, int, int, int]
|
xy: (
|
||||||
| tuple[list[int]]
|
tuple[int, int, int, int]
|
||||||
| tuple[tuple[int, int], tuple[int, int]]
|
| tuple[list[int]]
|
||||||
|
| tuple[tuple[int, int], tuple[int, int]]
|
||||||
|
)
|
||||||
) -> None:
|
) -> None:
|
||||||
# Arrange
|
# Arrange
|
||||||
im = Image.new("RGB", (200, 200))
|
im = Image.new("RGB", (200, 200))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user