From 58174ccabf7b9d21bba27ec4ebd68b1c6dc064fd Mon Sep 17 00:00:00 2001 From: Gabriel Smith Date: Fri, 27 Apr 2018 01:05:13 -0500 Subject: [PATCH] Added compliance with flake8 --- youtube_dl/extractor/ifunny.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/youtube_dl/extractor/ifunny.py b/youtube_dl/extractor/ifunny.py index 0a4063970..bfd6ba599 100644 --- a/youtube_dl/extractor/ifunny.py +++ b/youtube_dl/extractor/ifunny.py @@ -1,5 +1,6 @@ from .common import InfoExtractor + class IFunnyIE(InfoExtractor): _VALID_URL = r'(?:https?:\/\/)?(?:www\.)?ifunny\.co\/fun\/(?P\w+)' @@ -29,4 +30,4 @@ class IFunnyIE(InfoExtractor): 'url': video_url, 'ext': 'mp4', 'title': self._og_search_title(webpage), - }] \ No newline at end of file + }]