Skip to content

Commit b002be8

Browse files
committed
remove no longer accurate comment
1 parent 14c84a6 commit b002be8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/async_utils/priority_sem.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ def set_result(self, val: None) -> None:
5353
self.future.set_result(val)
5454

5555
def __await__(self) -> Generator[t.Any, t.Any, None]:
56-
# see: https://discuss.python.org/t/compatability-of-descriptor-objects-in-protocols/77998/2
57-
# for why this isn't using property delegation.
5856
f = asyncio.wrap_future(self.future)
5957
return (yield from f.__await__())
6058

0 commit comments

Comments
 (0)