In my read_lines function, pylint is giving the error:
R1716: Simplify chained comparison between the operands (chained-comparison)
but unlike the question I found here: Simplify Chained Comparison, my line involves two variables, not one and I'm not really sure how I can simplify it any further:
elif start < 0 and 0 < end < inf:
What am I missing?