We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3b5eb9 commit f7127baCopy full SHA for f7127ba
src/async_utils/_simple_lock.py
@@ -71,5 +71,5 @@ def _maybe_wake(self) -> None:
71
fut = next(iter(self._waiters))
72
except StopIteration:
73
return
74
- if not fut.done:
+ if not fut.done():
75
fut.set_result(None)
0 commit comments