Skip to content

Commit

Permalink
ci: resolve ruff check E402
Browse files Browse the repository at this point in the history
  • Loading branch information
IndexSeek authored and kszucs committed Oct 5, 2024
1 parent 3a81057 commit 00159c7
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions koerce/tests/test_y.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +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

from koerce import (
Expand All @@ -21,6 +14,11 @@
annotated,
)

msgspec = pytest.importorskip("msgspec")
pydantic = pytest.importorskip("pydantic")
from pydantic import BaseModel, validate_call # noqa: E402
from pydantic_core import SchemaValidator # noqa: E402

T = TypeVar("T")
S = TypeVar("S")
U = TypeVar("U")
Expand Down

0 comments on commit 00159c7

Please sign in to comment.