From c0890bfbc1b6352fc29d4643338b68d3d2b5c8ee Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 13 Mar 2022 11:50:09 -0400 Subject: [PATCH] Remove unused View._expires_at private function --- discord/ui/view.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/discord/ui/view.py b/discord/ui/view.py index cbef4f7ef..7e10a9281 100644 --- a/discord/ui/view.py +++ b/discord/ui/view.py @@ -250,12 +250,6 @@ class View: view.add_item(_component_to_item(component)) 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: """Adds an item to the view.