Skip to content

Commit e727990

Browse files
committed
🐛 Fix Self import
1 parent d3be06d commit e727990

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

discord/enums.py

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

2828
import types
2929
from enum import Enum as EnumBase
30-
from typing import Any, Self, TypeVar, Union
30+
from typing import Any, TypeVar, Union
31+
32+
from typing_extensions import Self
3133

3234
E = TypeVar("E", bound="Enum")
3335

0 commit comments

Comments
 (0)