From eb68edafc9b17d34201cc328b2f0664305513acf Mon Sep 17 00:00:00 2001 From: Nils Homer Date: Thu, 13 Jun 2024 14:35:54 -0700 Subject: [PATCH] Remove whitespace in doc (#26) --- pybedlite/overlap_detector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pybedlite/overlap_detector.py b/pybedlite/overlap_detector.py index ad546c5..61d7ee9 100644 --- a/pybedlite/overlap_detector.py +++ b/pybedlite/overlap_detector.py @@ -233,7 +233,7 @@ def get_overlaps(self, interval: Interval) -> List[Interval]: ) def get_enclosing_intervals(self, interval: Interval) -> List[Interval]: - """Returns the set of intervals in this detector that wholly enclose the query interval. + """Returns the set of intervals in this detector that wholly enclose the query interval. i.e. query.start >= target.start and query.end <= target.end. Args: