diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-11-01 00:24:30 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-11-01 00:35:16 +0100 |
commit | f34151ff0f91e8f0df8eaf829334b2205eb7da3c (patch) | |
tree | 2d074bb474b4b093c849ad2f6317dcc4ae5784f5 /core/SCsub | |
parent | 817dd7ccbb166b27c93706dffc5c0c0d59fd87f8 (diff) |
style: Various other PEP8 fixes in Python files
Done with `autopep8 --select=E7`, fixes:
- E701 - Put colon-separated compound statement on separate lines.
- E702 - Put semicolon-separated compound statement on separate lines.
- E703 - Put semicolon-separated compound statement on separate lines.
- E711 - Fix comparison with None.
- E712 - Fix (trivial case of) comparison with boolean.
- E713 - Fix (trivial case of) non-membership check.
- E721 - Fix various deprecated code (via lib2to3).
Diffstat (limited to 'core/SCsub')
-rw-r--r-- | core/SCsub | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/SCsub b/core/SCsub index 558df83d05..caae3a1c9b 100644 --- a/core/SCsub +++ b/core/SCsub @@ -57,10 +57,10 @@ Export('env') import make_binders env.Command(['method_bind.inc', 'method_bind_ext.inc'], 'make_binders.py', make_binders.run) -SConscript('os/SCsub'); -SConscript('math/SCsub'); -SConscript('io/SCsub'); -SConscript('bind/SCsub'); +SConscript('os/SCsub') +SConscript('math/SCsub') +SConscript('io/SCsub') +SConscript('bind/SCsub') lib = env.Library("core", env.core_sources) |