Skip to content

Commit 28e1ee1

Browse files
fix: Generated code broke everything
1 parent 339ab4f commit 28e1ee1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

diracx-cli/src/diracx/cli/auth.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,7 @@ async def pilot_login(
150150
async with AsyncDiracClient() as api:
151151

152152
try:
153-
response = await api.auth.pilot_login(
154-
pilot_job_reference=pilot_reference, pilot_secret=pilot_secret
155-
)
153+
response = await api.auth.pilot_login(pilot_job_reference=pilot_reference, pilot_secret=pilot_secret) # type: ignore
156154
except Exception as e:
157155
print(f"Error signing in DiracX {e!r}")
158156
return

0 commit comments

Comments
 (0)