mirror of https://github.com/mahmoud/boltons.git
Remove unnecessary import
This commit is contained in:
parent
1ee9231fd5
commit
2150d745dc
|
@ -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):
|
||||
|
||||
|
|
Loading…
Reference in New Issue