PEP8 imports (https://www.python.org/dev/peps/pep-0008/#imports). Remove unused import statements.

This commit is contained in:
Ryan Jarvis
2017-09-17 12:22:03 -07:00
parent b5fe4d9a7d
commit fa7e37aa4c
20 changed files with 75 additions and 62 deletions

View File

@@ -11,11 +11,11 @@
from __future__ import division
from .six import print_, integer_types
from .six.moves import reduce
import math
from .six import integer_types, print_
from .six.moves import reduce
class Error( Exception ):
"""Base class for exceptions in this module."""