Skip to content

Commit

Permalink
Merge pull request #230 from Davi0kProgramsThings/v3.0.0b4
Browse files Browse the repository at this point in the history
Merge branch `Davi0kProgramsThings:v3.0.0b4` into branch `bitfinexcom:master`.
  • Loading branch information
vigan-abd authored Dec 12, 2023
2 parents 90bba4e + 7f3db90 commit 9114e2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bfxapi/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.0.0b3"
__version__ = "3.0.0b4"
2 changes: 1 addition & 1 deletion bfxapi/websocket/_client/bfx_websocket_bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ async def unsubscribe(self, sub_id: str) -> None:

@Connection._require_websocket_connection
async def resubscribe(self, sub_id: str) -> None:
for subscription in self.__subscriptions.values():
for subscription in list(self.__subscriptions.values()):
if subscription["sub_id"] == sub_id:
await self.unsubscribe(sub_id)

Expand Down

0 comments on commit 9114e2c

Please sign in to comment.