2
0
mirror of https://github.com/blackjack4494/yt-dlc.git synced 2025-09-07 06:52:34 -06:00

[downloader/__init__] Define proper __all__

This commit is contained in:
Philipp Hagemeister 2014-11-23 22:25:12 +01:00
parent b74e86f48a
commit 14d4e90eb1

View File

@ -30,3 +30,8 @@ def get_suitable_downloader(info_dict):
return F4mFD
else:
return HttpFD
__all__ = [
'get_suitable_downloader',
'FileDownloader',
]