fix: Typo in check_finished

This commit is contained in:
2025-09-24 09:54:56 +10:00
parent 891e121e99
commit 7a9045d3dc

View File

@@ -32,7 +32,7 @@ class ActiveSubathon:
""" """
Return True if the subathon duration has exceeded its earned time. 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): async def pause(self):
""" """