From 7a9045d3dcc5d6f99eae196c2e3c70c2b55b6362 Mon Sep 17 00:00:00 2001 From: Interitio Date: Wed, 24 Sep 2025 09:54:56 +1000 Subject: [PATCH] fix: Typo in check_finished --- subathon/subathon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subathon/subathon.py b/subathon/subathon.py index b412e9c..fc30c43 100644 --- a/subathon/subathon.py +++ b/subathon/subathon.py @@ -32,7 +32,7 @@ class ActiveSubathon: """ Return True if the subathon duration has exceeded its earned time. """ - return (await self.get_duration() <= 0) + return (await self.get_remaining() <= 0) async def pause(self): """