added column names

This commit is contained in:
cpu
2023-12-21 23:14:09 +01:00
parent 4815e61617
commit fa29edafe1
2 changed files with 2 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ class TestSlovakDateTimeFormatter(unittest.TestCase):
test_data = []
with open("test_data.tsv") as file:
reader = csv.reader(file, delimiter="\t")
next(reader)
for row in reader:
if row and not row[0].startswith("#"):
test_data.append(row)