Skip to content

Commit

Permalink
Fix f string
Browse files Browse the repository at this point in the history
  • Loading branch information
awdavidson committed Sep 24, 2024
1 parent a9d6ab6 commit 52e9671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyiceberg/catalog/hive.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def _create_hive_client(properties: Dict[str, str]) -> _HiveClient:
if last_exception is not None:
raise e
else:
raise ValueError(f"Unable to connect to hive using uri: {properties["uri"]}")
raise ValueError(f"Unable to connect to hive using uri: {properties['uri']}")

def _convert_hive_into_iceberg(self, table: HiveTable) -> Table:
properties: Dict[str, str] = table.parameters
Expand Down

0 comments on commit 52e9671

Please sign in to comment.