Skip to content

Commit

Permalink
Group urllib imports
Browse files Browse the repository at this point in the history
  • Loading branch information
aag committed May 29, 2023
1 parent 69f4c83 commit be58a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion download_trailers.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@
from urllib.parse import urlunparse
except ImportError:
# Fall back to Python 2's naming
from urllib import quote
from ConfigParser import Error
from ConfigParser import MissingSectionHeaderError
from ConfigParser import SafeConfigParser as ConfigParser
from urllib2 import urlopen
from urllib2 import Request
from urllib2 import HTTPError
from urllib2 import URLError
from urllib import quote
from urlparse import ParseResult
from urlparse import urlparse
from urlparse import urlunparse
Expand Down

0 comments on commit be58a61

Please sign in to comment.