mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-22 13:06:34 +00:00
12 lines
206 B
Python
12 lines
206 B
Python
from yt_dlp.extractor.youtube import YoutubeIE
|
|
|
|
|
|
class PatchedYoutubeIE(YoutubeIE):
|
|
|
|
def FUNC(self):
|
|
pass
|
|
|
|
|
|
#YoutubeIE.__unpatched__FUNC = YoutubeIE.FUNC
|
|
#YoutubeIE.FUNC = PatchedYoutubeIE.FUNC
|