From 07702a3b4f76a865f5e0c4b90d6cadb3d29d13f8 Mon Sep 17 00:00:00 2001 From: Tyler White <50381805+IndexSeek@users.noreply.github.com> Date: Sat, 5 Oct 2024 16:29:33 +0000 Subject: [PATCH] ci: resolve ruff check E402 --- koerce/tests/test_y.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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")