Skip to content

Commit 2d2ef3c

Browse files
author
Kevin Hellemun
committed
Changed sandbox url. (#98)
1 parent 0a793d9 commit 2d2ef3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bunq/sdk/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def _request(self, method, uri_relative, request_bytes, params,
129129
self._get_uri_full(uri_relative_with_params),
130130
data=request_bytes,
131131
headers=all_headers,
132-
proxies={self._FIELD_PROXY_HTTPS: self._api_context.proxy_url}
132+
proxies={self._FIELD_PROXY_HTTPS: self._api_context.proxy_url},
133133
)
134134

135135
self._assert_response_success(response)

bunq/sdk/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class ApiEnvironmentType(aenum.AutoNumberEnum):
1818
"""
1919

2020
PRODUCTION = 'https://api.bunq.com/v1/'
21-
SANDBOX = 'https://sandbox.public.api.bunq.com/v1/'
21+
SANDBOX = 'https://public-api.sandbox.bunq.com/v1/'
2222

2323
def __init__(self, uri_base):
2424
"""

0 commit comments

Comments
 (0)