Skip to content

Commit 96d29f1

Browse files
Fix a runtime access causing deployment issues (#55)
1 parent a29fb7f commit 96d29f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/utils/paginator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@
2929
from discord import ui # shortcut because I'm lazy
3030
from discord.ext.commands import CommandError, Paginator as _Paginator # type: ignore # why does this need a stub file?
3131
from discord.utils import MISSING
32-
from typing_extensions import Self
3332

3433
from core import Bot, Context
3534

3635

3736
if TYPE_CHECKING:
3837
from discord.abc import MessageableChannel
38+
from typing_extensions import Self
3939

4040

4141
__all__ = ("CannotPaginate", "Pager", "KVPager", "TextPager")

0 commit comments

Comments
 (0)