Skip to content

Commit 72bf723

Browse files
Merge pull request #224
* fix unsubscribe_topics() typo
1 parent 03cefaa commit 72bf723

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

twitchio/ext/pubsub/pool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ async def unsubscribe_topics(self, topics: List[Topic]):
8181
8282
"""
8383
for node, vals in itertools.groupby(topics, lambda t: self._topics[t]):
84-
await node.unsubscribe_topics(vals)
84+
await node.unsubscribe_topic(vals)
8585
if not node.topics:
8686
await node.disconnect()
8787
self._pool.remove(node)

0 commit comments

Comments
 (0)