File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -253,7 +253,8 @@ class OrderbooksV2(dict):
253253 def __init__ (self , raw ):
254254 for k , v in raw .items ():
255255 for side in orderbook_mapping_v2 .keys ():
256- if side not in v : continue
256+ if side not in v :
257+ continue
257258 readable_side = orderbook_mapping_v2 [side ]
258259 v [readable_side ] = v [side ]
259260 v .pop (side )
Original file line number Diff line number Diff line change @@ -574,7 +574,7 @@ def _data_get(self,
574574 data = kwargs
575575 data ['limit' ] = actual_limit
576576 data ['page_token' ] = page_token
577- path = f'/{ endpoint_base } '
577+ path = f'/{ endpoint_base } '
578578 if api_version == 'v1beta2' or is_multi_symbol :
579579 data ['symbols' ] = _join_with_commas (symbol_or_symbols )
580580 elif symbol_or_symbols :
You can’t perform that action at this time.
0 commit comments