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 committed Oct 5, 2024
1 parent 466091b commit 07702a3
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions koerce/tests/test_y.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -21,6 +16,10 @@
annotated,
)

pydantic = pytest.importorskip("pydantic")
msgspec = pytest.importorskip("msgspec")


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

0 comments on commit 07702a3

Please sign in to comment.