Skip to content

Commit 54e4e36

Browse files
committed
only handle v2 for now
1 parent 46f13c9 commit 54e4e36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/browserbase/_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def model_fields_set(self) -> set[str]:
9090
return self.__fields_set__ # type: ignore
9191

9292
class Config(pydantic.BaseConfig): # pyright: ignore[reportDeprecated]
93-
extra: Any = pydantic.Extra.ignore # type: ignore
93+
extra: Any = pydantic.Extra.allow # type: ignore
9494
else:
9595
model_config: ClassVar[ConfigDict] = ConfigDict(
9696
extra="ignore", defer_build=coerce_boolean(os.environ.get("DEFER_PYDANTIC_BUILD", "true"))

0 commit comments

Comments
 (0)