Removed return value assertion

This commit is contained in:
Andrew Murray 2024-06-09 18:09:54 +10:00 committed by GitHub
parent 1a14957c19
commit de0779eee8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,7 @@ from .helper import (
def test_sanity() -> None:
im = hopper()
assert im.thumbnail((100, 100)) is None # type: ignore[func-returns-value]
im.thumbnail((100, 100))
assert im.size == (100, 100)