Removed unnecessary variable

This commit is contained in:
Andrew Murray 2024-08-13 19:03:14 +10:00
parent 93ce9ce004
commit 5546994828
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ from .helper import (
hopper,
)
_webp = pytest.importorskip("PIL._webp", reason="WebP support not installed")
pytest.importorskip("PIL._webp", reason="WebP support not installed")
def test_read_rgba() -> None:

View File

@ -8,7 +8,7 @@ from PIL import Image
from .helper import assert_image_equal, hopper
_webp = pytest.importorskip("PIL._webp", reason="WebP support not installed")
pytest.importorskip("PIL._webp", reason="WebP support not installed")
RGB_MODE = "RGB"