From 25f79ff6a13315a9eb0ac85358ee15b1e3f731e1 Mon Sep 17 00:00:00 2001 From: Fokko Driesprong Date: Mon, 16 Oct 2023 20:32:02 +0200 Subject: [PATCH] Remove extra ``` E pydantic.warnings.PydanticDeprecatedSince20: Using extra keyword arguments on `Field` is deprecated and will be removed. Use `json_schema_extra` instead. (Extra keys: 'example'). Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.4/migration/ ``` --- pyiceberg/table/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pyiceberg/table/__init__.py b/pyiceberg/table/__init__.py index ad36255dab..53ffdbb22a 100644 --- a/pyiceberg/table/__init__.py +++ b/pyiceberg/table/__init__.py @@ -418,7 +418,6 @@ class Namespace(IcebergRootModel[List[str]]): root: List[str] = Field( ..., description='Reference to one or more levels of a namespace', - example=['accounting', 'tax'], )