From 921dc153f365268443c1decf6d347046c9d32ff9 Mon Sep 17 00:00:00 2001 From: Unknown Date: Sat, 12 Sep 2020 01:12:39 +0200 Subject: [PATCH] [ndr-daserste] flake8 --- youtube_dlc/extractor/ndr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dlc/extractor/ndr.py b/youtube_dlc/extractor/ndr.py index f03582118..f3897c71b 100644 --- a/youtube_dlc/extractor/ndr.py +++ b/youtube_dlc/extractor/ndr.py @@ -93,7 +93,7 @@ class NDRIE(NDRBaseIE): default=None) or self._search_regex( r'\bembedUrl["\']\s*:\s*(["\'])(?P(?:(?!\1).)+)\1', webpage, 'embed URL', fatal=False, group='url') - if embed_url == None: + if embed_url is None: return self.url_result('ndr:%s' % id, ie=NDREmbedBaseIE.ie_key()) description = self._search_regex( r']+itemprop="description">([^<]+)

',