From 646d4a4f93ae9e1c9ccd225be2a1da41367e944a Mon Sep 17 00:00:00 2001 From: Nocturn9x Date: Tue, 21 Feb 2023 15:47:22 +0100 Subject: [PATCH] Minor fixes --- giambio/core.py | 1 - giambio/sync.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/giambio/core.py b/giambio/core.py index 9c1f004..35329a1 100644 --- a/giambio/core.py +++ b/giambio/core.py @@ -644,7 +644,6 @@ class AsyncScheduler: self.run_ready = deque() self.suspended = deque() - def reschedule_joiners(self, task: Task): """ Reschedules the parent(s) of the diff --git a/giambio/sync.py b/giambio/sync.py index badd2d7..82c6732 100644 --- a/giambio/sync.py +++ b/giambio/sync.py @@ -43,7 +43,7 @@ class Event: async def trigger(self, value: Optional[Any] = None): """ Sets the event, waking up all tasks that called - pause() on it + wait() on it """ if self.set: