Skip to content

Commit

Permalink
Update __version__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
aisling-2 committed Mar 7, 2024
1 parent 9b89acb commit 4d43222
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion binance/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.5.1"
__version__ = "3.6.0"
8 changes: 5 additions & 3 deletions binance/lib/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@ def parse_proxies(proxies: dict):
return {
"http_proxy_host": parsed.hostname,
"http_proxy_port": parsed.port,
"http_proxy_auth": (parsed.username, parsed.password)
if parsed.username and parsed.password
else None,
"http_proxy_auth": (
(parsed.username, parsed.password)
if parsed.username and parsed.password
else None
),
}

0 comments on commit 4d43222

Please sign in to comment.