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:
David Lechner
2025-01-21 16:59:51 -06:00
committed by Antoine SOULIER
parent e4ceb7fa86
commit 7558637303
5 changed files with 24 additions and 24 deletions

View File

@@ -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