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

@@ -53,7 +53,7 @@ def check_unit(rng, dt, sr):
(e_c, nn_c) = lc3.energy_compute(dt, sr, x)
ok = ok and np.amax(np.abs(e_c - e)) < 1e-5 and nn_c == nn
x[15*ns//16:] *= 1e2;
x[15*ns//16:] *= 1e2
(e , nn ) = nrg.compute(x)
(e_c, nn_c) = lc3.energy_compute(dt, sr, x)