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 35
35
from typing_extensions import Self
36
36
37
37
from ..types .components import LabelComponent as LabelComponentPayload
38
- from .view import View
38
+ from .view import BaseView
39
39
40
40
41
41
# fmt: off
44
44
)
45
45
# fmt: on
46
46
47
- V = TypeVar ('V' , bound = 'View ' , covariant = True )
47
+ V = TypeVar ('V' , bound = 'BaseView ' , covariant = True )
48
48
49
49
50
50
class Label (Item [V ]):
Original file line number Diff line number Diff line change 37
37
38
38
from ..types .components import TextInput as TextInputPayload
39
39
from ..types .interactions import ModalSubmitTextInputInteractionData as ModalSubmitTextInputInteractionDataPayload
40
- from .view import View
40
+ from .view import BaseView
41
41
from ..interactions import Interaction
42
42
43
43
47
47
)
48
48
# fmt: on
49
49
50
- V = TypeVar ('V' , bound = 'View ' , covariant = True )
50
+ V = TypeVar ('V' , bound = 'BaseView ' , covariant = True )
51
51
52
52
53
53
class TextInput (Item [V ]):
You can’t perform that action at this time.
0 commit comments