Skip to content

Commit b2f0a9e

Browse files
authored
use the non-deprecated func (#1326)
1 parent 60800d8 commit b2f0a9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyiceberg/catalog/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ def table_exists(self, identifier: Union[str, Identifier]) -> bool:
899899

900900
@retry(**_RETRY_ARGS)
901901
def drop_view(self, identifier: Union[str]) -> None:
902-
identifier_tuple = self.identifier_to_tuple_without_catalog(identifier)
902+
identifier_tuple = self._identifier_to_tuple_without_catalog(identifier)
903903
response = self._session.delete(
904904
self.url(
905905
Endpoints.drop_view, prefixed=True, **self._split_identifier_for_path(identifier_tuple, IdentifierKind.VIEW)

0 commit comments

Comments
 (0)