Fix type errors in all examples

This commit is contained in:
Rapptz
2025-08-16 06:18:36 -04:00
parent 7e2ca02fd1
commit 4f539b710f
26 changed files with 124 additions and 16 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ if TYPE_CHECKING:
SelectCallbackDecorator = Callable[[ItemCallbackType['S', BaseSelectT]], BaseSelectT]
S = TypeVar('S', bound='ActionRow', covariant=True)
S = TypeVar('S', bound=Union['ActionRow', 'LayoutView'], covariant=True)
V = TypeVar('V', bound='LayoutView', covariant=True)
__all__ = ('ActionRow',)