Skip to content

Commit

Permalink
Fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Vlad0n20 committed Oct 24, 2024
1 parent 1358a51 commit 910e662
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions addon_service/oauth2/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import dataclasses
import urllib.parse
from http import HTTPStatus
from secrets import token_urlsafe
from typing import Iterable
Expand Down Expand Up @@ -114,8 +115,6 @@ async def get_refreshed_access_token(
async def _token_request(
token_endpoint_url: str, request_body: dict[str, str]
) -> FreshTokenResult:
import urllib.parse

_client = await get_singleton_client_session()
async with _client.post(token_endpoint_url, data=request_body) as _token_response:
if _token_response.content_type == "application/x-www-form-urlencoded":
Expand Down

0 comments on commit 910e662

Please sign in to comment.