chore: avoid importing TYPE_CHECKING (#2864)

Assisted-by: OpenCode:glm-5.1

Signed-off-by: Henry Schreiner <henryfs@princeton.edu>
This commit is contained in:
Henry Schreiner
2026-05-18 20:10:51 -07:00
committed by GitHub
parent 525f538878
commit a7b3f178c3
6 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -3,7 +3,6 @@ import tomllib
from collections.abc import Mapping
from fnmatch import fnmatch
from pathlib import Path
from typing import TYPE_CHECKING
import pytest
@@ -15,6 +14,7 @@ from cibuildwheel.selector import BuildSelector, EnableGroup
from cibuildwheel.util import resources
from cibuildwheel.util.packaging import DependencyConstraints
TYPE_CHECKING = False
if TYPE_CHECKING:
from .conftest import ArgsInterceptor