Manually set the line limit argument to int type. Was getting
File ".../process.py", line 130, in maybe_replace
len(f"{converted}{rest}") <= self.len_limit - chunk.start_idx
TypeError: unsupported operand type(s) for -: 'str' and 'int'
Without this fix the line limit was being passed in as a string.
Manually set the line limit argument to int type. Was getting
Without this fix the line limit was being passed in as a string.