We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 390c357 commit 8202a8eCopy full SHA for 8202a8e
glotaran/builtin/elements/damped_oscillation/matrix.py
@@ -21,7 +21,7 @@ def calculate_damped_oscillation_matrix_instant_activation(
21
axis: ArrayLike,
22
) -> None:
23
for idx, (amplitude, frequency, rate) in enumerate(
24
- zip(inputs, frequencies, rates, strict=True)
+ zip(inputs, frequencies, rates) # noqa: B905
25
):
26
osc = np.exp(-rate * axis - 1j * frequency * axis)
27
matrix[:, idx] = osc.real * amplitude
0 commit comments