Merge pull request #15832 from AUTOMATIC1111/xyz-csv-skipinitialspace
XYZ CSV skipinitialspace
This commit is contained in:
commit
5977cb0946
|
@ -209,7 +209,7 @@ def list_to_csv_string(data_list):
|
||||||
|
|
||||||
|
|
||||||
def csv_string_to_list_strip(data_str):
|
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:
|
class AxisOption:
|
||||||
|
|
Loading…
Reference in New Issue