From fccb1667b3019db78ccf0b91c57c2e7ae8dd2d85 Mon Sep 17 00:00:00 2001 From: IAmTomahawkx Date: Sun, 27 Aug 2023 22:20:19 -0700 Subject: [PATCH] pipe was 3.10, not 3.8 --- twitchio/ext/commands/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitchio/ext/commands/core.py b/twitchio/ext/commands/core.py index 393b6746..ecd6b692 100644 --- a/twitchio/ext/commands/core.py +++ b/twitchio/ext/commands/core.py @@ -43,7 +43,7 @@ from . import Cog, Bot from .stringparser import StringParser - if sys.version_info >= (3, 8): + if sys.version_info >= (3, 10): UnionT = Union[types.UnionType, Union] else: UnionT = Union