Skip to content

Commit

Permalink
Implement requested change
Browse files Browse the repository at this point in the history
  • Loading branch information
siebert authored Sep 7, 2024
1 parent 501f875 commit a6ba9ef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions findmy/util/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ async def request(
if isinstance(auth, tuple):
kwargs["auth"] = BasicAuth(auth[0], auth[1])
else:
if auth:
kwargs.pop("auth")
kwargs.pop("auth", None)
options = cast(_AiohttpRequestOptions, kwargs)

async with await session.request(
Expand Down

0 comments on commit a6ba9ef

Please sign in to comment.