Hello! It seems that a recent contribution to the project inadvertently changed bullet in pymupdf_rag.py from a tuple to a list. This is an issue where bullet is used with the string startswith method in a couple places, as startswith only accepts strings and tuples.
I made a small change to convert the new list of bullet characters to a tuple, such that this issue could be resolved. Please let me know what you think.
Hello! It seems that a recent contribution to the project inadvertently changed
bullet
in pymupdf_rag.py from atuple
to alist
. This is an issue wherebullet
is used with the stringstartswith
method in a couple places, asstartswith
only accepts strings and tuples.I made a small change to convert the new list of bullet characters to a tuple, such that this issue could be resolved. Please let me know what you think.
Thank you!