File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def introspect_token_network(
55
55
url = self .api_base .url_for (
56
56
f"/v1/public/{ self .project_id } /oauth2/introspect" , data
57
57
)
58
- res = self .sync_client .postForm (url , data , headers )
58
+ res = self .sync_client .post_form (url , data , headers )
59
59
jwtResponse = IDPTokenResponse .from_json (
60
60
res .response .status_code , res .json
61
61
)
@@ -103,7 +103,7 @@ async def introspect_token_network_async(
103
103
url = self .api_base .url_for (
104
104
f"/v1/public/{ self .project_id } /oauth2/introspect" , data
105
105
)
106
- res = await self .async_client .postForm (url , data , headers )
106
+ res = await self .async_client .post_form (url , data , headers )
107
107
jwtResponse = IDPTokenResponse .from_json (
108
108
res .response .status , res .json
109
109
)
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ def post(
68
68
resp = requests .post (url , json = json , headers = final_headers , auth = self .auth )
69
69
return self ._response_from_request (resp )
70
70
71
- def postForm (
71
+ def post_form (
72
72
self ,
73
73
url : str ,
74
74
form : Optional [Dict [str , Any ]],
@@ -177,7 +177,7 @@ async def post(
177
177
)
178
178
return await self ._response_from_request (resp )
179
179
180
- async def postForm (
180
+ async def post_form (
181
181
self ,
182
182
url : str ,
183
183
form : Optional [Dict [str , Any ]],
You can’t perform that action at this time.
0 commit comments