From 99c0139cd37f72d73196eb97c7a56ee143a70600 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Tue, 24 Jan 2023 13:02:01 +0000 Subject: search: Use comprehension when splitting location. * gn3/api/search.py (parse_location_field): Use comprehension. --- gn3/api/search.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gn3/api/search.py') diff --git a/gn3/api/search.py b/gn3/api/search.py index 0e832da..8ce51e3 100644 --- a/gn3/api/search.py +++ b/gn3/api/search.py @@ -173,9 +173,8 @@ def parse_location_field(species_query: xapian.Query, raise ValueError location: tuple[Maybe[int], Maybe[int]] if ".." in location_str: - the_range = parse_range(location_str) - location = (the_range[0].map(apply_si_suffix), # type: ignore - the_range[1].map(apply_si_suffix)) # type: ignore + location = tuple(limit.map(apply_si_suffix) # type: ignore + for limit in parse_range(location_str)) # If point location, assume +/- 50 kbases on either side. else: width = 50*10**3 -- cgit v1.2.3