Remove unnecessary import of Warning.

This commit is contained in:
Stefan van der Walt
2013-08-21 00:59:37 +02:00
parent d9836a6add
commit ca768b0b95
3 changed files with 2 additions and 5 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
"""
r"""
=============================
Straight line Hough transform
=============================
+1 -3
View File
@@ -88,9 +88,7 @@ test_verbose = _functools.partial(test, verbose=True)
test_verbose.__doc__ = test.__doc__
from exceptions import Warning as _Warning
class _Log(_Warning):
class _Log(Warning):
pass
class _FakeLog(object):
-1
View File
@@ -1,7 +1,6 @@
import warnings
import functools
import sys
from exceptions import Warning
from . import six