Skip to content

Commit 6194612

Browse files
committed
apply minor fixes [#26]
1 parent 180cd30 commit 6194612

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bunq/sdk/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import uuid
22
from json import JSONDecodeError
3-
43
from urllib.parse import urlencode
4+
55
import requests
66

77
from bunq.sdk import context
88
from bunq.sdk import exception
9-
from bunq.sdk.exception_factory import ExceptionFactory
109
from bunq.sdk import security
10+
from bunq.sdk.exception_factory import ExceptionFactory
1111
from bunq.sdk.json import converter
1212

1313

bunq/sdk/exception.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ def __init__(self, message, response_code):
55
:type response_code: int
66
"""
77

8-
self._response_code = response_code
98
self._message = message
9+
self._response_code = response_code
1010

1111
super(ApiException, self).__init__(message)
1212

0 commit comments

Comments
 (0)