mirror of
https://github.com/espressif/esptool.git
synced 2025-10-18 09:12:27 +08:00
PEP8 imports (https://www.python.org/dev/peps/pep-0008/#imports). Remove unused import statements.
This commit is contained in:
@@ -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."""
|
||||
|
Reference in New Issue
Block a user