This is an automated email from the ASF dual-hosted git repository. sungwy pushed a commit to branch pyiceberg-0.7.x in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
commit daf0e3191dfbea827e3a8a48622b68c82a75e979 Author: Andre Luis Anastacio <[email protected]> AuthorDate: Tue Jul 30 20:59:06 2024 -0300 Fix pydantic warning in the commit process (#972) --- pyiceberg/catalog/rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyiceberg/catalog/rest.py b/pyiceberg/catalog/rest.py index d64051ca..e6fbabf5 100644 --- a/pyiceberg/catalog/rest.py +++ b/pyiceberg/catalog/rest.py @@ -684,7 +684,7 @@ class RestCatalog(Catalog): update={ "identifier": TableIdentifier( namespace=table_request.identifier.namespace.root[1:], name=table_request.identifier.name - ).model_dump() + ) } ) return table_request
