mirror of
https://github.com/google/liblc3.git
synced 2026-04-24 00: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
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user