Browse Source

Add missing underscore in Modal refresh method

pull/7691/head
Narmy 3 years ago
committed by GitHub
parent
commit
3fd8f76c61
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/ui/modal.py

2
discord/ui/modal.py

@ -174,7 +174,7 @@ class Modal(View):
def _refresh(self, components: Sequence[ModalSubmitComponentInteractionDataPayload]) -> None:
for component in components:
if component['type'] == 1:
self.refresh(component['components'])
self._refresh(component['components'])
else:
item = find(lambda i: i.custom_id == component['custom_id'], self.children) # type: ignore
if item is None:

Loading…
Cancel
Save