diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-30 06:56:32 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-04-30 06:56:32 +0200 |
commit | 8941255c4344c0de5d29cd735e5eeb1d018371af (patch) | |
tree | f381334c3c786394d470e0cff7c383f73d88ab3e | |
parent | befb1330f6457f8514d18c45109223eb27b01ee7 (diff) |
Remove unnecessary else.
-rwxr-xr-x | faust2axo.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/faust2axo.py b/faust2axo.py index 2157221..71a6078 100755 --- a/faust2axo.py +++ b/faust2axo.py @@ -96,8 +96,7 @@ def massage_output(oldfile, newfile, xml): if skip_ifdef: if line.startswith("#endif"): skip_ifdef = False - else: - continue + continue outfile.write(line) else: |