Fix csv reader

This commit is contained in:
2023-07-20 12:14:45 +02:00
parent c224fd7606
commit 85e5576837

View File

@ -17,7 +17,7 @@ def cast_value(value: str) -> Any:
if value == '':
return None
elif value[0] == '"' and value[-1] == '"':
return value[1:-1]
return value[1:-1].replace('""', '"')
elif value == 'T':
return True
elif value == 'F':