Skip to content

Commit f43bed1

Browse files
committed
fix: undefined field type
1 parent f2f2bcc commit f43bed1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/codegen/agents/client/openapi_client/api_response.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22

33
from __future__ import annotations
44

5-
from typing import TYPE_CHECKING, Generic, TypeVar
5+
from typing import Generic, TypeVar
66

77
from pydantic import BaseModel, Field, StrictBytes, StrictInt
8-
9-
if TYPE_CHECKING:
10-
from collections.abc import Mapping
8+
from collections.abc import Mapping
119

1210
T = TypeVar("T")
1311

0 commit comments

Comments
 (0)