This is an automated email from the ASF dual-hosted git repository.
sungwy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/main by this push:
new b77dd719 Fix pydantic warning in the commit process (#972)
b77dd719 is described below
commit b77dd7197d80668ba1194be8db508f7d418fe022
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