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

@@ -1,10 +1,11 @@
from __future__ import division, print_function
from setuptools import setup
import io
import os
import re
from setuptools import setup
# Example code to pull version from esptool.py with regex, taken from
# http://python-packaging-user-guide.readthedocs.org/en/latest/single_source_version/