Skip to content

Commit 6d934c8

Browse files
committed
lint
1 parent 50791ae commit 6d934c8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pyiceberg/catalog/rest.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,6 @@ def _fetch_config(self) -> None:
347347
self.uri = config[URI]
348348

349349
def _identifier_to_validated_tuple(self, identifier: Union[str, Identifier]) -> Identifier:
350-
print(f"DEBUG: {identifier}")
351350
identifier_tuple = self.identifier_to_tuple(identifier)
352351
if len(identifier_tuple) <= 1:
353352
raise NoSuchTableError(f"Missing namespace or invalid identifier: {'.'.join(identifier_tuple)}")
@@ -632,7 +631,6 @@ def list_tables(self, namespace: Union[str, Identifier]) -> List[Identifier]:
632631

633632
@retry(**_RETRY_ARGS)
634633
def load_table(self, identifier: Union[str, Identifier]) -> Table:
635-
print(f"LOAD_TABLE: {identifier=}")
636634
response = self._session.get(self.url(Endpoints.load_table, prefixed=True, **self._split_identifier_for_path(identifier)))
637635
try:
638636
response.raise_for_status()

0 commit comments

Comments
 (0)