From 5b6eaca0bfe13114671f3a9f024c0b5d07a558b3 Mon Sep 17 00:00:00 2001 From: Yuya Ebihara Date: Sun, 24 May 2026 11:00:37 +0900 Subject: [PATCH] REST: Allow Identifier type in drop_view --- pyiceberg/catalog/rest/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyiceberg/catalog/rest/__init__.py b/pyiceberg/catalog/rest/__init__.py index 4db3b79202..01035a24b2 100644 --- a/pyiceberg/catalog/rest/__init__.py +++ b/pyiceberg/catalog/rest/__init__.py @@ -1438,7 +1438,7 @@ def register_view(self, identifier: str | Identifier, metadata_location: str) -> @retry(**_RETRY_ARGS) @override - def drop_view(self, identifier: str) -> None: + def drop_view(self, identifier: str | Identifier) -> None: self._check_endpoint(Capability.V1_DELETE_VIEW) response = self._session.delete( self.url(Endpoints.drop_view, prefixed=True, **self._split_identifier_for_path(identifier, IdentifierKind.VIEW)),