1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-31 14:45:14 +00:00

[cleanup] Minor fixes

This commit is contained in:
pukkandan
2022-05-18 09:04:30 +05:30
parent 80e8493ee7
commit 21633673c3
8 changed files with 26 additions and 18 deletions

View File

@@ -1,3 +1,5 @@
import itertools
from .common import InfoExtractor
from ..compat import compat_str
from ..utils import (
@@ -9,8 +11,6 @@ from ..utils import (
unsmuggle_url,
)
import itertools
class VoicyBaseIE(InfoExtractor):
def _extract_from_playlist_data(self, value):
@@ -105,7 +105,7 @@ class VoicyChannelIE(VoicyBaseIE):
@classmethod
def suitable(cls, url):
return not VoicyIE.suitable(url) and super(VoicyChannelIE, cls).suitable(url)
return not VoicyIE.suitable(url) and super().suitable(url)
def _entries(self, channel_id):
pager = ''