Skip to content

Commit 7e30d28

Browse files
fix lint
Signed-off-by: Vikrant Puppala <vikrant.puppala@databricks.com>
1 parent 7e34a35 commit 7e30d28

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pyarrow = [
2626
{ version = ">=18.0.0", python = ">=3.13", optional=true }
2727
]
2828
pyjwt = "^2.0.0"
29-
requests-kerberos = { version = "^0.15.0", optional = true }
29+
requests-kerberos = {version = "^0.15.0", optional = true}
3030

3131

3232
[tool.poetry.extras]

src/databricks/sql/common/http_utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ def detect_and_parse_proxy(
6060
return proxy, proxy_headers
6161

6262

63-
def _generate_negotiate_headers(proxy_hostname: Optional[str]) -> Optional[Dict[str, str]]:
63+
def _generate_negotiate_headers(
64+
proxy_hostname: Optional[str],
65+
) -> Optional[Dict[str, str]]:
6466
"""Generate Kerberos/SPNEGO authentication headers"""
6567
try:
6668
from requests_kerberos import HTTPKerberosAuth

0 commit comments

Comments
 (0)