mirror of
https://github.com/google/liblc3.git
synced 2026-04-23 16:04:48 +00:00
python: remove semicolons
While mostly harmless, random semicolons in Python can be a bit distracting when reading the code, especially when one uses a syntax highlighter that flags them as errors.
This commit is contained in:
committed by
Antoine SOULIER
parent
e4ceb7fa86
commit
7558637303
@@ -300,8 +300,8 @@ class TnsSynthesis(Tns):
|
||||
xi = x[i] - rc[rc_order-1] * st[rc_order-1]
|
||||
for k in range(rc_order-2, -1, -1):
|
||||
xi -= rc[k] * st[k]
|
||||
st[k+1] = xi * rc[k] + st[k];
|
||||
st[0] = xi;
|
||||
st[k+1] = xi * rc[k] + st[k]
|
||||
st[0] = xi
|
||||
|
||||
y[i] = xi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user