Skip to content

Commit d23c9b9

Browse files
2pdchusri
andauthored
V3.3.1 (#89)
* ✨ _dispatch_request default value should be function not string (#68) * pump version * black fix --------- Co-authored-by: Thaweesak Chusri <[email protected]>
1 parent e09bb46 commit d23c9b9

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 3.3.1 - 2023-03-21
4+
5+
### Updated
6+
- Merge #68
7+
38
## 3.3.0 - 2023-01-11
49

510
### Add

binance/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.3.0"
1+
__version__ = "3.3.1"

binance/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def _dispatch_request(self, http_method):
158158
"DELETE": self.session.delete,
159159
"PUT": self.session.put,
160160
"POST": self.session.post,
161-
}.get(http_method, "GET")
161+
}.get(http_method, self.session.get)
162162

163163
def _handle_exception(self, response):
164164
status_code = response.status_code

binance/websocket/binance_client_factory.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66

77
class BinanceReconnectingClientFactory(ReconnectingClientFactory):
8-
98
initialDelay = 0.1
109
maxDelay = 10
1110
maxRetries = 10

0 commit comments

Comments
 (0)