From 5bade4fd58feb92b1eb7eab86e391c30546672f2 Mon Sep 17 00:00:00 2001 From: Noe Brucy Date: Thu, 22 Jul 2021 17:52:30 +0200 Subject: [PATCH] [run_selector] correct a copy-paste typo --- run_selector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_selector.py b/run_selector.py index b552a19..0546ee7 100644 --- a/run_selector.py +++ b/run_selector.py @@ -433,7 +433,7 @@ class RunSelector: else: nums = [] if time_max is not None: - imax = search(nums, time_min, "left") + imax = search(nums, time_max, "left") if imax is not None: nums = nums[: imax + 1]