Skip to content

Commit aba936f

Browse files
committed
Prefix type fix
1 parent c437ebd commit aba936f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

twitchio/ext/commands/bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
from .components import Component
4949

50-
PrefixT: TypeAlias = str | Iterable[str] | Callable[["Bot", ChatMessage], Coroutine[Any, Any, str | Iterable[str]]]
50+
PrefixT: TypeAlias = str | Iterable[str] | Callable[["Bot", "ChatMessage"], Coroutine[Any, Any, str | Iterable[str]]]
5151

5252

5353
logger: logging.Logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)