Browse Source

Remove unused imports

totalwebcasting
Philipp Hagemeister 10 years ago
parent
commit
c9f08154a3
8 changed files with 2 additions and 15 deletions
  1. +1
    -1
      youtube_dl/extractor/audiomack.py
  2. +0
    -2
      youtube_dl/extractor/br.py
  3. +1
    -4
      youtube_dl/extractor/cliphunter.py
  4. +0
    -3
      youtube_dl/extractor/faz.py
  5. +0
    -1
      youtube_dl/extractor/nhl.py
  6. +0
    -1
      youtube_dl/extractor/sportbox.py
  7. +0
    -2
      youtube_dl/extractor/vimeo.py
  8. +0
    -1
      youtube_dl/postprocessor/ffmpeg.py

+ 1
- 1
youtube_dl/extractor/audiomack.py View File

@ -4,7 +4,7 @@ from __future__ import unicode_literals
from .common import InfoExtractor
from .soundcloud import SoundcloudIE
from ..utils import ExtractorError
import datetime
import time


+ 0
- 2
youtube_dl/extractor/br.py View File

@ -1,8 +1,6 @@
# coding: utf-8
from __future__ import unicode_literals
import re
from .common import InfoExtractor
from ..utils import (
ExtractorError,


+ 1
- 4
youtube_dl/extractor/cliphunter.py View File

@ -4,7 +4,6 @@ import json
import re
from .common import InfoExtractor
from ..utils import int_or_none
_translation_table = {
@ -39,9 +38,7 @@ class CliphunterIE(InfoExtractor):
}
def _real_extract(self, url):
mobj = re.match(self._VALID_URL, url)
video_id = mobj.group('id')
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
video_title = self._search_regex(


+ 0
- 3
youtube_dl/extractor/faz.py View File

@ -2,9 +2,6 @@
from __future__ import unicode_literals
from .common import InfoExtractor
from ..utils import (
determine_ext,
)
class FazIE(InfoExtractor):


+ 0
- 1
youtube_dl/extractor/nhl.py View File

@ -7,7 +7,6 @@ from .common import InfoExtractor
from ..utils import (
compat_urlparse,
compat_urllib_parse,
determine_ext,
unified_strdate,
)


+ 0
- 1
youtube_dl/extractor/sportbox.py View File

@ -7,7 +7,6 @@ from .common import InfoExtractor
from ..utils import (
parse_duration,
parse_iso8601,
int_or_none,
)


+ 0
- 2
youtube_dl/extractor/vimeo.py View File

@ -8,13 +8,11 @@ import itertools
from .common import InfoExtractor
from .subtitles import SubtitlesInfoExtractor
from ..utils import (
clean_html,
compat_HTTPError,
compat_urllib_parse,
compat_urllib_request,
compat_urlparse,
ExtractorError,
get_element_by_attribute,
InAdvancePagedList,
int_or_none,
RegexNotFoundError,


+ 0
- 1
youtube_dl/postprocessor/ffmpeg.py View File

@ -8,7 +8,6 @@ import time
from .common import AudioConversionError, PostProcessor
from ..utils import (
check_executable,
compat_subprocess_get_DEVNULL,
encodeArgument,
encodeFilename,


Loading…
Cancel
Save