Fix description of data taht doesn't overlap the requested range.
This commit is contained in:
parent
733c849286
commit
0b377a8d65
1 changed files with 4 additions and 1 deletions
|
@ -80,5 +80,8 @@ def _cov_description(
|
|||
f"and ends {end_uncovered} day{s(end_uncovered)} earlier "
|
||||
f"than requested"
|
||||
)
|
||||
else:
|
||||
elif start_uncovered == 0 and end_uncovered == 0:
|
||||
return "as requested"
|
||||
else:
|
||||
return "which doesn't match the request"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue