Skip to content

Commit 93e55e8

Browse files
to_hex_id -> get_hex_id
Signed-off-by: varun-edachali-dbx <[email protected]>
1 parent 89425f9 commit 93e55e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/databricks/sql/backend/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def __str__(self) -> str:
7272
if self.backend_type == BackendType.SEA:
7373
return str(self.guid)
7474
elif self.backend_type == BackendType.THRIFT:
75-
return f"{self.to_hex_id()}|{guid_to_hex_id(self.secret) if isinstance(self.secret, bytes) else str(self.secret)}"
75+
return f"{self.get_hex_id()}|{guid_to_hex_id(self.secret) if isinstance(self.secret, bytes) else str(self.secret)}"
7676
return str(self.guid)
7777

7878
@classmethod

0 commit comments

Comments
 (0)