]> jfr.im git - yt-dlp.git/blob - yt_dlp/compat/asyncio/tasks.py
9d98fdfeb67c190fd92d7fed3df5ca9335e8c938
[yt-dlp.git] / yt_dlp / compat / asyncio / tasks.py
1 # flake8: noqa: F405
2
3 from asyncio.tasks import * # noqa: F403
4
5 from ..compat_utils import passthrough_module
6
7 passthrough_module(__name__, 'asyncio.tasks')
8 del passthrough_module
9
10 try: # >= 3.7
11 all_tasks
12 except NameError:
13 all_tasks = Task.all_tasks