diff --git a/demo.py b/demo.py index 08d47d4..a8fbc77 100644 --- a/demo.py +++ b/demo.py @@ -19,8 +19,7 @@ def get_api_url(organisation, report_token): return '/api/' + organisation + '/reports/' + report_token def get_auth(whichAuth, token, password): - auth = (token, password) - return auth + return token, password def get_response_json(url, auth): response = requests.get(url, auth=auth)