lines 219-223 (I think) in utils/csv_tools.py are:
if (stringsAreQuoted
and ((words[i].startswith('"')
and words[i].endswith('"'))
or (words[i].startswith('"')
and words[i].endswith('"')))):
Am I crazy or is the or clause the same statement twice? Is it trying to catch different forms of quotes? Because it's probably not working as intended if that's the case?
lines 219-223 (I think) in utils/csv_tools.py are:
Am I crazy or is the or clause the same statement twice? Is it trying to catch different forms of quotes? Because it's probably not working as intended if that's the case?