Fix csv reader
This commit is contained in:
@ -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':
|
||||
|
Reference in New Issue
Block a user