Skip to content

Commit 4d0012a

Browse files
author
remimd
committed
??
1 parent d31308c commit 4d0012a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

injection/_core/common/lazy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async def cache() -> AsyncIterator[T]:
1919
while True:
2020
yield value
2121

22-
return partial(__anext, cache())
22+
return partial(_anext, cache())
2323

2424

2525
class Lazy[T](Invertible[T]):
@@ -46,5 +46,5 @@ def is_set(self) -> bool:
4646
return self.__is_set
4747

4848

49-
async def __anext[T](async_iterator: AsyncIterator[T]) -> T:
49+
async def _anext[T](async_iterator: AsyncIterator[T]) -> T:
5050
return await anext(async_iterator)

0 commit comments

Comments
 (0)