Skip to content

Commit

Permalink
chore: remove maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
cdnninja committed Apr 20, 2024
1 parent d23398e commit ec65d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yoto_api/YotoAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ def _get_authenticated_headers(self, token: Token) -> dict:
return {
"User-Agent": "Yoto/2.73 (com.yotoplay.Yoto; build:10405; iOS 17.4.0) Alamofire/5.6.4",
"Content-Type": "application/json",
"Authorization": token.token_type + " " + token.access_token, # maybe?
"Authorization": token.token_type + " " + token.access_token,
}

def get_child_value(data, key):
Expand Down

0 comments on commit ec65d0b

Please sign in to comment.