Skip to content

Commit 1e604a1

Browse files
committed
lint
1 parent 63a7f82 commit 1e604a1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/databricks/sql/auth/token_federation.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ def add_headers(self, request_headers: Dict[str, str]):
5858
"""Add authentication headers to the request."""
5959

6060
if self._cached_token and not self._cached_token.is_expired():
61-
request_headers["Authorization"] = f"{self._cached_token.token_type} {self._cached_token.access_token}"
61+
request_headers[
62+
"Authorization"
63+
] = f"{self._cached_token.token_type} {self._cached_token.access_token}"
6264
return
6365

6466
# Get the external headers first to check if we need token federation

0 commit comments

Comments
 (0)