Do not import type checking

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
This commit is contained in:
Andrew Murray 2025-03-30 22:13:21 +11:00 committed by GitHub
parent ca9f4f8304
commit 80d5b421eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,10 +22,9 @@ import shutil
import subprocess
import sys
import tempfile
from typing import TYPE_CHECKING
from . import Image
TYPE_CHECKING = False
if TYPE_CHECKING:
from . import ImageWin