From db4c3b2f2d27d0789230c878e8707de4e089bf3b Mon Sep 17 00:00:00 2001 From: Shettland Date: Thu, 19 Dec 2024 09:44:47 +0100 Subject: [PATCH] Removed temporary pdb --- core/utils/samples.py | 1 - 1 file changed, 1 deletion(-) diff --git a/core/utils/samples.py b/core/utils/samples.py index 8a3bc6ba..3c62b400 100644 --- a/core/utils/samples.py +++ b/core/utils/samples.py @@ -758,7 +758,6 @@ def search_samples(sample_name, lab_name, sample_state, s_date, user): ) sample_objs = sample_objs.filter(pk__in=state_ids) if s_date != "": - import pdb; pdb.set_trace() sample_objs = sample_objs.filter(sequencing_date=s_date) if len(sample_objs) == 1: sample_list.append(sample_objs[0].get_sample_id())