From c44746d92d696d64386145216b605733d2e12a37 Mon Sep 17 00:00:00 2001 From: Bastian Venthur Date: Wed, 8 Jan 2020 09:52:04 +0100 Subject: [PATCH] Removed now useless check for version_info >= 2.7 Signed-off-by: Bastian Venthur --- tests/__init__.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/__init__.py b/tests/__init__.py index d3cfb8649..84347ec0f 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,9 +1,4 @@ -import sys - -if sys.version_info >= (2, 7): - import unittest # NOQA -else: - import unittest2 as unittest # NOQA +import unittest # NOQA try: from unittest import mock