Remove unnecessary import statement

This commit is contained in:
Matt Prahl
2016-09-19 15:44:02 -04:00
committed by Nils Philippsen
parent 634fabb798
commit 256a57e906
2 changed files with 0 additions and 6 deletions

View File

@@ -25,11 +25,6 @@
"""Configuration handler functions."""
try:
import configparser # py3
except ImportError:
import ConfigParser as configparser # py2
import six
from rida import app

View File

@@ -25,7 +25,6 @@ import json
from mock import patch
from shutil import copyfile
from os import path, mkdir
from datetime import datetime
from tests import app, init_data