Some pep8 style fixes
[youtube-dl] / youtube_dl / downloader / __init__.py
index f19b490f186a73f50bdc385661ebecd9b72aec4e..0d9eb0001e774bdf75ccdf31c636947dfeecd330 100644 (file)
@@ -8,6 +8,7 @@ from ..utils import (
     determine_ext,
 )
 
+
 def get_suitable_downloader(info_dict):
     """Get the downloader class that can handle the info dict."""
     url = info_dict['url']
@@ -20,4 +21,3 @@ def get_suitable_downloader(info_dict):
         return MplayerFD
     else:
         return HttpFD
-