Skip to content

Commit

Permalink
fix: remove unused imports to fix Ruff errors
Browse files Browse the repository at this point in the history
  • Loading branch information
devin-ai-integration[bot] committed Nov 23, 2024
1 parent a34de9c commit 9adfd24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions instructor/dsl/validators.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from typing import Callable, Optional, Any, TypeVar, cast, Protocol, TypeAlias
from typing import Callable, Any, TypeVar, cast, Protocol, TypeAlias
from openai import OpenAI
from openai.types.chat import ChatCompletionMessageParam
from openai.types.moderation import (
Moderation,
Categories,
CreateModerationResponse,
)
from pydantic import Field, BaseModel, ConfigDict # type: ignore
from pydantic import Field, ConfigDict # type: ignore

from instructor.function_calls import OpenAISchema
from instructor.client import Instructor
Expand Down

0 comments on commit 9adfd24

Please sign in to comment.