Mark state refresh methods as private with an underscore

People kept wondering what it is or what it does.
This commit is contained in:
Rapptz
2022-03-14 07:31:21 -04:00
parent 6dd8845e4f
commit 934ab4151a
6 changed files with 14 additions and 14 deletions

View File

@ -207,10 +207,10 @@ class TextInput(Item[V]):
def to_component_dict(self) -> TextInputPayload:
return self._underlying.to_dict()
def refresh_component(self, component: TextInputComponent) -> None:
def _refresh_component(self, component: TextInputComponent) -> None:
self._underlying = component
def refresh_state(self, data: ModalSubmitTextInputInteractionDataPayload) -> None:
def _refresh_state(self, data: ModalSubmitTextInputInteractionDataPayload) -> None:
self._value = data.get('value', None)
@classmethod