Skip to content

Commit

Permalink
fix(cli): missing await in auth command (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
RaMin0 authored Dec 24, 2024
1 parent 783bb36 commit 4388c07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion myskoda/cli/requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,4 @@ async def departure_timers(ctx: Context, vin: str, anonymize: bool) -> None:
async def auth(ctx: Context) -> None:
"""Extract the auth token."""
myskoda: MySkoda = ctx.obj["myskoda"]
print(myskoda.get_auth_token())
print(await myskoda.get_auth_token())

0 comments on commit 4388c07

Please sign in to comment.