File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed
discord/ext/modal_paginator Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ class ModalPaginator(discord.ui.View):
260
260
261
261
.. describe:: iter(x)
262
262
263
- Returns an iterator of (:class:`PaginatorModal`, List[:class:`TextInput`]) for each modal in the paginator.
263
+ Returns an iterator of (:class:`PaginatorModal`, List[:class:`discord.ui. TextInput`]) for each modal in the paginator.
264
264
265
265
.. versionadded:: 1.3
266
266
@@ -1001,10 +1001,8 @@ async def send(
1001
1001
1002
1002
if (
1003
1003
response
1004
- and isinstance (response , _InteractionCallbackResponse ) # pyright: ignore [reportUnnecessaryIsInstance]
1005
- and isinstance (
1006
- response .resource , discord .InteractionMessage
1007
- ) # pyright: ignore [reportUnnecessaryIsInstance]
1004
+ and isinstance (response , _InteractionCallbackResponse )
1005
+ and isinstance (response .resource , discord .InteractionMessage )
1008
1006
):
1009
1007
self ._message = response .resource
1010
1008
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ classifiers = [
34
34
[project .optional-dependencies ]
35
35
dev = [" black" , " ruff" , " typing_extensions" ]
36
36
docs = [
37
- " Sphinx==6.1 " ,
38
- " furo" ,
39
- " sphinx-autodoc-typehints==1.22 " ,
40
- " enum-tools[sphinx]==0.9.* " ,
37
+ " Sphinx>=8.2,<9 " ,
38
+ " furo>=2024.8,<2025 " ,
39
+ " sphinx-autodoc-typehints>=3.2,<4 " ,
40
+ " enum-tools[sphinx]>=0.13,<0.14 " ,
41
41
]
42
42
43
43
[tool .setuptools ]
You can’t perform that action at this time.
0 commit comments