From f923970679a0455af45624088ac6351745d9e1d2 Mon Sep 17 00:00:00 2001 From: iamsaswata Date: Sun, 16 Nov 2025 13:02:09 -0800 Subject: [PATCH] Remove duplicate continue statement Removed unreachable duplicate continue statement at line 324 in core.py. The second continue statement was unreachable dead code, likely added by mistake during copy-paste or editing. --- imdlib/core.py | 1 - 1 file changed, 1 deletion(-) diff --git a/imdlib/core.py b/imdlib/core.py index 48efdee..4b87b0e 100644 --- a/imdlib/core.py +++ b/imdlib/core.py @@ -321,7 +321,6 @@ def fill_na(self): if id_y[i] == 0: self.data[:, id_x[i], id_y[i]] = np.nan continue - continue for j in range(self.data.shape[0]): window = 0 while np.isnan(self.data[j, id_x[i], id_y[i]]):