1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00

Remove unused imports

This commit is contained in:
Olof Johansson 2014-03-19 22:58:40 +01:00
parent 1850c0473d
commit 0efff3c2fe
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import xml.etree.ElementTree as ET
from svtplay_dl.utils.urllib import urlparse, quote
from svtplay_dl.service import Service
from svtplay_dl.utils import get_http_data, select_quality, check_redirect, is_py2_old
from svtplay_dl.utils import get_http_data
from svtplay_dl.log import log
from svtplay_dl.fetcher.hls import download_hls
from svtplay_dl.fetcher.http import download_http

View File

@ -9,7 +9,7 @@ import sys
import json
import re
from svtplay_dl.utils.urllib import urlparse, parse_qs, quote_plus
from svtplay_dl.utils.urllib import quote_plus
from svtplay_dl.service import Service, OpenGraphThumbMixin
from svtplay_dl.utils import get_http_data, select_quality
from svtplay_dl.log import log