mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-12-06 06:45:00 +01:00
[cleanup] Minor fixes
This commit is contained in:
parent
80e8493ee7
commit
21633673c3
8 changed files with 26 additions and 18 deletions
|
|
@ -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 = ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue