style: some of the suggestions from flake8
diff --git a/examples/setup-wxTerminal-py2exe.py b/examples/setup-wxTerminal-py2exe.py
index 9e0add7..caff719 100644
--- a/examples/setup-wxTerminal-py2exe.py
+++ b/examples/setup-wxTerminal-py2exe.py
@@ -17,25 +17,25 @@
icon = os.path.join(os.path.dirname(sys.executable), 'py.ico')
setup(
- options = {'py2exe': {
+ options={'py2exe': {
'excludes': ['javax.comm'],
'optimize': 2,
'dist_dir': 'dist',
}
},
- name = "wxTerminal",
- windows = [
+ name="wxTerminal",
+ windows=[
{
'script': "wxTerminal.py",
'icon_resources': [(0x0004, icon)]
},
],
- zipfile = "stuff.lib",
+ zipfile="stuff.lib",
- description = "Simple serial terminal application",
- version = "0.1",
- author = "Chris Liechti",
- author_email = "[email protected]",
- url = "https://github.com/pyserial/pyserial/",
+ description="Simple serial terminal application",
+ version="0.1",
+ author="Chris Liechti",
+ author_email="[email protected]",
+ url="https://github.com/pyserial/pyserial/",
)