diff --git a/koerce/tests/test_y.py b/koerce/tests/test_y.py index 9c0d564..cb3ff32 100644 --- a/koerce/tests/test_y.py +++ b/koerce/tests/test_y.py @@ -5,11 +5,6 @@ from typing import ClassVar, Generic import pytest - -pydantic = pytest.importorskip("pydantic") -msgspec = pytest.importorskip("msgspec") - -# from ibis.common.grounds import Annotable as IAnnotable from pydantic import BaseModel, validate_call from pydantic_core import SchemaValidator from typing_extensions import TypeVar @@ -21,6 +16,10 @@ annotated, ) +pydantic = pytest.importorskip("pydantic") +msgspec = pytest.importorskip("msgspec") + + T = TypeVar("T") S = TypeVar("S") U = TypeVar("U")