Commit 10f2407f authored by w-e-w's avatar w-e-w

xyz csv skipinitialspace

parent ddb28b33
......@@ -212,7 +212,7 @@ def list_to_csv_string(data_list):
def csv_string_to_list_strip(data_str):
return list(map(str.strip, chain.from_iterable(csv.reader(StringIO(data_str)))))
return list(map(str.strip, chain.from_iterable(csv.reader(StringIO(data_str), skipinitialspace=True))))
class AxisOption:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment