Skip to content

Commit 962def5

Browse files
committed
Make session_id_hex keyword-only parameter in Error.__init__
1 parent c8cfc23 commit 962def5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/databricks/sql/exc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ def __init__(
1616
message=None,
1717
context=None,
1818
host_url=None,
19-
session_id_hex=None,
2019
*args,
20+
session_id_hex=None,
2121
**kwargs,
2222
):
2323
super().__init__(message, *args, **kwargs)

0 commit comments

Comments
 (0)