We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 836ec0d commit c4e4ed0Copy full SHA for c4e4ed0
twitchio/ext/commands/cooldowns.py
@@ -310,7 +310,7 @@ def verify_cache(self) -> None:
310
311
async def get_key(self, payload: PT) -> Hashable:
312
if asyncio.iscoroutinefunction(self._key):
313
- key = await self._key(payload)
+ key = await self._key(payload) # type: ignore
314
else:
315
key = self._key(payload) # type: ignore
316
0 commit comments