File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3535 from typing_extensions import Self
3636
3737 from ..types .components import LabelComponent as LabelComponentPayload
38- from .view import View
38+ from .view import BaseView
3939
4040
4141# fmt: off
4444)
4545# fmt: on
4646
47- V = TypeVar ('V' , bound = 'View ' , covariant = True )
47+ V = TypeVar ('V' , bound = 'BaseView ' , covariant = True )
4848
4949
5050class Label (Item [V ]):
Original file line number Diff line number Diff line change 3737
3838 from ..types .components import TextInput as TextInputPayload
3939 from ..types .interactions import ModalSubmitTextInputInteractionData as ModalSubmitTextInputInteractionDataPayload
40- from .view import View
40+ from .view import BaseView
4141 from ..interactions import Interaction
4242
4343
4747)
4848# fmt: on
4949
50- V = TypeVar ('V' , bound = 'View ' , covariant = True )
50+ V = TypeVar ('V' , bound = 'BaseView ' , covariant = True )
5151
5252
5353class TextInput (Item [V ]):
You can’t perform that action at this time.
0 commit comments