Fix spelling mistake in LabelComponent slots

This commit is contained in:
Sacul
2025-08-26 11:45:03 -04:00
committed by Rapptz
parent d0863e056b
commit cbcea19e44
+2 -2
View File
@@ -1355,11 +1355,11 @@ class LabelComponent(Component):
__slots__ = (
'label',
'description',
'commponent',
'component',
'id',
)
__repr_info__ = ('label', 'description', 'commponent', 'id,')
__repr_info__ = ('label', 'description', 'component', 'id,')
def __init__(self, data: LabelComponentPayload, state: Optional[ConnectionState]) -> None:
self.component: Component = _component_factory(data['component'], state) # type: ignore