Skip to content

Commit

Permalink
Minor refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
elliot-100 committed Aug 24, 2023
1 parent 8d708c3 commit 2587e60
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions spond/spond.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,11 @@ def __init__(self, username, password):

@property
def auth_headers(self):
headers = {
return {
"content-type": "application/json",
"Authorization": f"Bearer {self.token}",
"auth": f"{self.auth}",
}
return headers

async def login(self):
login_url = f"{self.api_url}login"
Expand Down

0 comments on commit 2587e60

Please sign in to comment.