We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc5e716 commit 8b6ba56Copy full SHA for 8b6ba56
src/databricks/sql/backend/utils/__init__.py
@@ -1,3 +1,3 @@
1
from .guid_utils import guid_to_hex_id
2
3
-__all__ = ["guid_to_hex_id"]
+__all__ = ["guid_to_hex_id"]
src/databricks/sql/backend/utils/guid_utils.py
@@ -18,4 +18,4 @@ def guid_to_hex_id(guid: bytes) -> str:
18
except Exception as e:
19
logger.debug(f"Unable to convert bytes to UUID: {guid!r} -- {str(e)}")
20
return str(guid)
21
- return str(this_uuid)
+ return str(this_uuid)
0 commit comments