Skip to content

Commit

Permalink
[PalcoMP3] Conform to new linter rule
Browse files Browse the repository at this point in the history
* no space after @ in decorator
  • Loading branch information
dirkf committed Jun 20, 2024
1 parent e0094e6 commit 4d05f84
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions youtube_dl/extractor/palcomp3.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from ..utils import (
int_or_none,
str_or_none,
try_get,
traverse_obj,
)


Expand Down Expand Up @@ -109,7 +109,7 @@ class PalcoMP3ArtistIE(PalcoMP3BaseIE):
}
name'''

@ classmethod
@classmethod
def suitable(cls, url):
return False if re.match(PalcoMP3IE._VALID_URL, url) else super(PalcoMP3ArtistIE, cls).suitable(url)

Expand All @@ -118,7 +118,8 @@ def _real_extract(self, url):
artist = self._call_api(artist_slug, self._ARTIST_FIELDS_TMPL)['artist']

def entries():
for music in (try_get(artist, lambda x: x['musics']['nodes'], list) or []):
for music in traverse_obj(artist, (
'musics', 'nodes', lambda _, m: m['musicID'])):
yield self._parse_music(music)

return self.playlist_result(
Expand All @@ -137,7 +138,7 @@ class PalcoMP3VideoIE(PalcoMP3BaseIE):
'title': 'Maiara e Maraisa - Você Faz Falta Aqui - DVD Ao Vivo Em Campo Grande',
'description': 'md5:7043342c09a224598e93546e98e49282',
'upload_date': '20161107',
'uploader_id': 'maiaramaraisaoficial',
'uploader_id': '@maiaramaraisaoficial',
'uploader': 'Maiara e Maraisa',
}
}]
Expand Down

0 comments on commit 4d05f84

Please sign in to comment.