unasync icon indicating copy to clipboard operation
unasync copied to clipboard

The async transformation code.

Results 13 unasync issues
Sort by recently updated
recently updated
newest added

Currently if you rename a file for example you end up with stale files hanging around.

Some utility functions I was thinking about: ```python def azip(*iterables): # Convert any iterables and async iterables into a zipped async iterable iterators = [aiter(x) for x in iterables] async...

Useful for unasync-ing type hints for `Callable[[...], Awaitable[X]]` to `Callable[[...], X]`