[ie/youtube] Fix DASH formats incorrectly skipped in some situations (#11910)
[yt-dlp3.git] / test / testdata / yt_dlp_plugins / extractor / ignore.py
blob816a16aa203c1aca6862092d6b7cad9ee82f451c
1 from yt_dlp.extractor.common import InfoExtractor
4 class IgnoreNotInAllPluginIE(InfoExtractor):
5 pass
8 class InAllPluginIE(InfoExtractor):
9 pass
12 __all__ = ['InAllPluginIE']