Skip to content

Commit 9a2909e

Browse files
authored
Fix M2M async GetToken call (#278)
1 parent 54a3640 commit 9a2909e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stytch/consumer/api/m2m.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ async def token_async(
9494

9595
url = self.api_base.url_for(f"/v1/public/{self.project_id}/oauth2/token", data)
9696
res = await self.async_client.post(url, data)
97-
return GetTokenResponse.from_json(res.response.status_code, res.json)
97+
return GetTokenResponse.from_json(res.response.status, res.json)
9898

9999
# ENDMANUAL(m2m.token)
100100

stytch/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "13.14.0"
1+
__version__ = "13.14.1"

0 commit comments

Comments
 (0)