Skip to content

Commit f19ed8a

Browse files
Format
1 parent 0ecaf3a commit f19ed8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

databricks/sdk/oidc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def id_token(self) -> IdToken:
110110
"""
111111
if not self.path:
112112
raise ValueError("Missing path")
113-
113+
114114
token = None
115115
try:
116116
with open(self.path, "r") as f:
@@ -119,7 +119,7 @@ def id_token(self) -> IdToken:
119119
raise ValueError(f"File {self.path!r} does not exist")
120120
except Exception as e:
121121
raise ValueError(f"Error reading token file: {str(e)}")
122-
122+
123123
if not token:
124124
raise ValueError(f"File {self.path!r} is empty")
125125
return IdToken(jwt=token)

0 commit comments

Comments
 (0)