1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 21:54:17 +01:00

No need for utils.io

This commit is contained in:
Johan Andersson 2018-01-30 22:09:31 +01:00
parent 7e351530e9
commit 903a4ae71d
2 changed files with 2 additions and 11 deletions

View File

@ -1,9 +1,10 @@
import xml.etree.ElementTree as ET
import json
import re
from io import StringIO
from svtplay_dl.log import log
from svtplay_dl.utils import decode_html_entities, HTTP
from svtplay_dl.utils.io import StringIO
from svtplay_dl.output import output
from requests import __build__ as requests_version
import platform

View File

@ -1,10 +0,0 @@
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
# Pylint does not seem to handle conditional imports
# pylint: disable=F0401
# pylint: disable=W0611
# pylint: disable=E0611
from __future__ import absolute_import
from io import StringIO