Skip to content

Commit e07fb55

Browse files
rushilpatel0github-actions[bot]
authored andcommitted
Automated pre-commit update
1 parent f43bed1 commit e07fb55

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

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

33
from __future__ import annotations
44

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

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

1012
T = TypeVar("T")
1113

0 commit comments

Comments
 (0)