From 3980225b61a6ca526ac7241ab40d8e28e5c0caae Mon Sep 17 00:00:00 2001 From: stepshal Date: Thu, 16 Jun 2016 19:22:50 +0700 Subject: [PATCH] PEP 8 fixes --- setup.py | 1 + youtube_dl/extractor/radiojavan.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c1e923f71..647961ebe 100644 --- a/setup.py +++ b/setup.py @@ -71,6 +71,7 @@ else: else: params['scripts'] = ['bin/youtube-dl'] + class build_lazy_extractors(Command): description = "Build the extractor lazy loading module" user_options = [] diff --git a/youtube_dl/extractor/radiojavan.py b/youtube_dl/extractor/radiojavan.py index 884c28420..ec4fa6e60 100644 --- a/youtube_dl/extractor/radiojavan.py +++ b/youtube_dl/extractor/radiojavan.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals import re from .common import InfoExtractor -from ..utils import( +from ..utils import ( unified_strdate, str_to_int, )