Skip to content

Commit 0ce3c44

Browse files
committed
fix: mypy
1 parent cd377b0 commit 0ce3c44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/devscontext/synthesis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def _get_client(self) -> Any:
196196
"""Get or create the OpenAI client."""
197197
if self._client is None:
198198
try:
199-
from openai import AsyncOpenAI # type: ignore[import-not-found]
199+
from openai import AsyncOpenAI
200200
except ImportError as e:
201201
raise ImportError(
202202
"openai package not installed. Install with: pip install devscontext[openai]"

0 commit comments

Comments
 (0)