feeds: remove unused import

master
pictuga 2020-03-20 12:19:08 +01:00
parent 5865af64f9
commit 765a43511e
1 changed files with 0 additions and 2 deletions

View File

@ -21,12 +21,10 @@ json.encoder.c_make_encoder = None
try:
# python 2
from StringIO import StringIO
from urllib2 import urlopen
from ConfigParser import RawConfigParser
except ImportError:
# python 3
from io import StringIO
from urllib.request import urlopen
from configparser import RawConfigParser
try: