Skip to content

Commit

Permalink
Changed sandbox url. (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
OGKevin committed May 29, 2018
1 parent 0a793d9 commit 2d2ef3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bunq/sdk/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def _request(self, method, uri_relative, request_bytes, params,
self._get_uri_full(uri_relative_with_params),
data=request_bytes,
headers=all_headers,
proxies={self._FIELD_PROXY_HTTPS: self._api_context.proxy_url}
proxies={self._FIELD_PROXY_HTTPS: self._api_context.proxy_url},
)

self._assert_response_success(response)
Expand Down
2 changes: 1 addition & 1 deletion bunq/sdk/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ApiEnvironmentType(aenum.AutoNumberEnum):
"""

PRODUCTION = 'https://api.bunq.com/v1/'
SANDBOX = 'https://sandbox.public.api.bunq.com/v1/'
SANDBOX = 'https://public-api.sandbox.bunq.com/v1/'

def __init__(self, uri_base):
"""
Expand Down

0 comments on commit 2d2ef3c

Please sign in to comment.