From 2150d745dc1cfb5cb0e4a3ed8d072e17f579a738 Mon Sep 17 00:00:00 2001 From: Matt Wilber Date: Wed, 28 Nov 2018 14:56:40 -0800 Subject: [PATCH] Remove unnecessary import --- tests/test_cacheutils.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_cacheutils.py b/tests/test_cacheutils.py index 1886ef8..3911606 100644 --- a/tests/test_cacheutils.py +++ b/tests/test_cacheutils.py @@ -1,5 +1,4 @@ # -*- coding: utf-8 -*- -import abc import string from abc import abstractmethod, ABCMeta @@ -267,7 +266,7 @@ def test_cachedmethod(): def test_cachedmethod_maintains_func_abstraction(): - ABC = abc.ABCMeta('ABC', (object,), {}) + ABC = ABCMeta('ABC', (object,), {}) class Car(ABC): @@ -317,7 +316,7 @@ def test_cachedproperty(): def test_cachedproperty_maintains_func_abstraction(): - ABC = abc.ABCMeta('ABC', (object,), {}) + ABC = ABCMeta('ABC', (object,), {}) class AbstractExpensiveCalculator(ABC):