From f424a20b90089f5a3d638e2ec497144603df5c12 Mon Sep 17 00:00:00 2001 From: Lyz Date: Fri, 25 Oct 2019 15:21:25 +0200 Subject: [PATCH] Fix code styling --- youtube_dl/extractor/bandcamp.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/youtube_dl/extractor/bandcamp.py b/youtube_dl/extractor/bandcamp.py index f1a047f57..00abc5430 100644 --- a/youtube_dl/extractor/bandcamp.py +++ b/youtube_dl/extractor/bandcamp.py @@ -121,8 +121,7 @@ class BandcampIE(InfoExtractor): def extract(key): return self._search_regex( r'\b%s\s*["\']?\s*:\s*(["\'])(?P.+)\1' % key, - webpage, key, default=None, group='value' - ) + webpage, key, default=None, group='value') artist = extract('artist') album = extract('album_title')