Skip to content

Commit 5236106

Browse files
chore(internal): properly set __pydantic_private__ (#127)
1 parent eaf577b commit 5236106

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/browserbase/_base_client.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
ModelBuilderProtocol,
6464
)
6565
from ._utils import is_dict, is_list, asyncify, is_given, lru_cache, is_mapping
66-
from ._compat import model_copy, model_dump
66+
from ._compat import PYDANTIC_V2, model_copy, model_dump
6767
from ._models import GenericModel, FinalRequestOptions, validate_type, construct_type
6868
from ._response import (
6969
APIResponse,
@@ -207,6 +207,9 @@ def _set_private_attributes(
207207
model: Type[_T],
208208
options: FinalRequestOptions,
209209
) -> None:
210+
if PYDANTIC_V2 and getattr(self, "__pydantic_private__", None) is None:
211+
self.__pydantic_private__ = {}
212+
210213
self._model = model
211214
self._client = client
212215
self._options = options
@@ -292,6 +295,9 @@ def _set_private_attributes(
292295
client: AsyncAPIClient,
293296
options: FinalRequestOptions,
294297
) -> None:
298+
if PYDANTIC_V2 and getattr(self, "__pydantic_private__", None) is None:
299+
self.__pydantic_private__ = {}
300+
295301
self._model = model
296302
self._client = client
297303
self._options = options

0 commit comments

Comments
 (0)