From 094890985e93e000f086b5a7b3093179e0da17b4 Mon Sep 17 00:00:00 2001 From: Divyajyoti <50514405+divyajyoti09@users.noreply.github.com> Date: Thu, 7 Nov 2024 22:20:35 +0000 Subject: [PATCH] editing get_available_detectors() to avoid repetition (#4928) --- pycbc/detector.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pycbc/detector.py b/pycbc/detector.py index a39f0f09701..10df8b48275 100644 --- a/pycbc/detector.py +++ b/pycbc/detector.py @@ -56,8 +56,6 @@ def gmst_accurate(gps_time): def get_available_detectors(): """ List the available detectors """ dets = list(_ground_detectors.keys()) - for pfx, name in get_available_lal_detectors(): - dets += [pfx] return dets def get_available_lal_detectors():