Skip to content

Commit a0b867f

Browse files
committed
fix python 3.7
1 parent 7a5d1a3 commit a0b867f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
aiohttp>=3.6.0,<3.8.0
2-
iso8601
2+
iso8601
3+
typing-extensions

twitchio/ext/commands/core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727

2828
import itertools
2929
import copy
30-
from typing import Any, Union, Optional, Callable, Awaitable, Tuple, TYPE_CHECKING, Literal, List, Type, Set, TypeVar
30+
from typing import Any, Union, Optional, Callable, Awaitable, Tuple, TYPE_CHECKING, List, Type, Set, TypeVar
31+
from typing_extensions import Literal
3132

3233
from twitchio.abcs import Messageable
3334
from .cooldowns import *

0 commit comments

Comments
 (0)