fix: Failed to import csv data

This commit is contained in:
wangruidong 2024-09-14 18:15:12 +08:00 committed by Bryan
parent ed6de83e8c
commit 99c3696d96

View File

@ -167,7 +167,7 @@ class BaseFileParser(BaseParser):
rows = list(rows) rows = list(rows)
if not rows: if not rows:
return rows return rows
if rows[0][0] == '#Help': if rows[0][0].startswith('#Help'):
rows.pop(0) rows.pop(0)
return rows return rows