Skip to content

Commit

Permalink
Update panasonicsession.py
Browse files Browse the repository at this point in the history
fix function casing
  • Loading branch information
heldchen authored Jun 21, 2024
1 parent aa6b5db commit 9fd5d01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ async def _get_new_token(self):
# check if the user can skip the authentication workflows - in that case,
# the location is directly pointing to the redirect url with the "code"
# query parameter included
if not location.startsWith(PanasonicSession.REDIRECT_URI):
if not location.startswith(PanasonicSession.REDIRECT_URI):

response = await self._client.get(
f"{PanasonicSession.BASE_PATH_AUTH}/{location}",
Expand Down

0 comments on commit 9fd5d01

Please sign in to comment.