From b27e504bbdb6211b9c5a6bac61aac4b53c9871a1 Mon Sep 17 00:00:00 2001 From: Deepak Mallubhotla Date: Sun, 17 Mar 2024 18:40:46 -0500 Subject: [PATCH] lint: unneeded variable definition --- deepdog/real_spectrum_run.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deepdog/real_spectrum_run.py b/deepdog/real_spectrum_run.py index 308865b..e74166c 100644 --- a/deepdog/real_spectrum_run.py +++ b/deepdog/real_spectrum_run.py @@ -125,7 +125,8 @@ def get_a_result_fast_filter_tarucha_spin_qubit_pair_phase_only(input) -> int: r1s = dot_pair_inputs[:, 0, 0:3] r2s = dot_pair_inputs[:, 1, 0:3] f1s = dot_pair_inputs[:, 0, 3] - f2s = dot_pair_inputs[:, 1, 3] + # Don't actually need this + # f2s = dot_pair_inputs[:, 1, 3] diffses1 = r1s[:, None] - ss[:, None, :] diffses2 = r2s[:, None] - ss[:, None, :]