1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-19 18:45:35 +08:00
youtube-dl/youtube_dl/extractors/ie.py
2013-06-05 10:33:13 +02:00

9 lines
225 B
Python

# Here should go the real base InfoExtractor class and all the modules needed.
from ..utils import *
class BaseIETest(object):
@classmethod
def test(cls):
print(cls.__name__ +' is a subclass of BaseIETest')