Browse Source

Remove unused View._expires_at private function

pull/7680/head
Rapptz 3 years ago
parent
commit
c0890bfbc1
  1. 6
      discord/ui/view.py

6
discord/ui/view.py

@ -250,12 +250,6 @@ class View:
view.add_item(_component_to_item(component)) view.add_item(_component_to_item(component))
return view return view
@property
def _expires_at(self) -> Optional[float]:
if self.timeout:
return time.monotonic() + self.timeout
return None
def add_item(self, item: Item) -> None: def add_item(self, item: Item) -> None:
"""Adds an item to the view. """Adds an item to the view.

Loading…
Cancel
Save