From 256a57e906d3047018963f17c25b23cdadc5ff1f Mon Sep 17 00:00:00 2001 From: Matt Prahl Date: Mon, 19 Sep 2016 15:44:02 -0400 Subject: [PATCH] Remove unnecessary import statement --- rida/config.py | 5 ----- tests/test_views/test_views.py | 1 - 2 files changed, 6 deletions(-) diff --git a/rida/config.py b/rida/config.py index 49bba237..2ec05b00 100644 --- a/rida/config.py +++ b/rida/config.py @@ -25,11 +25,6 @@ """Configuration handler functions.""" -try: - import configparser # py3 -except ImportError: - import ConfigParser as configparser # py2 - import six from rida import app diff --git a/tests/test_views/test_views.py b/tests/test_views/test_views.py index 34bc6e63..4e13ad8f 100644 --- a/tests/test_views/test_views.py +++ b/tests/test_views/test_views.py @@ -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