From 3ab09be13c0bb87fbd34a0dc8c8a3e2720e4005e Mon Sep 17 00:00:00 2001 From: Rapptz Date: Wed, 28 Jan 2026 16:58:55 -0500 Subject: [PATCH] Invert View.is_finished condition when there is no associated Future --- discord/ui/view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ui/view.py b/discord/ui/view.py index a57a61a72..6b4a3ca90 100644 --- a/discord/ui/view.py +++ b/discord/ui/view.py @@ -622,7 +622,7 @@ class BaseView: def is_finished(self) -> bool: """:class:`bool`: Whether the view has finished interacting.""" if self.__stopped is None: - return True + return False return self.__stopped.done()