about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-07-05 13:39:24 +0100
committerRemita Amine <remitamine@gmail.com>2016-07-05 13:39:24 +0100
commit31af3e35e094715f5b6616b7ea14e1445ecdc19c (patch)
treebe3094bd9ab69bbaddab06f383bd541ad861de91
parent94a5cff91d81c120b8e8b395f9fbe465286940f0 (diff)
downloadyoutube-dl-31af3e35e094715f5b6616b7ea14e1445ecdc19c.tar.gz
youtube-dl-31af3e35e094715f5b6616b7ea14e1445ecdc19c.tar.xz
youtube-dl-31af3e35e094715f5b6616b7ea14e1445ecdc19c.zip
[sandia] remove unused imports
-rw-r--r--youtube_dl/extractor/sandia.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/youtube_dl/extractor/sandia.py b/youtube_dl/extractor/sandia.py
index 9ab4d20a7..96e43af84 100644
--- a/youtube_dl/extractor/sandia.py
+++ b/youtube_dl/extractor/sandia.py
@@ -1,18 +1,12 @@
 # coding: utf-8
 from __future__ import unicode_literals
 
-import itertools
 import json
-import re
 
 from .common import InfoExtractor
-from ..compat import compat_urlparse
 from ..utils import (
     int_or_none,
-    js_to_json,
     mimetype2ext,
-    sanitized_Request,
-    unified_strdate,
 )