1
0
mirror of synced 2025-12-19 17:48:10 -05:00

fix parsing

This commit is contained in:
Marc Foley
2025-07-04 10:08:04 +01:00
parent be4af0046c
commit be53d8f569

View File

@@ -31,7 +31,11 @@ def tags_metadata():
.read()
.decode("utf-8")
)
return data.splitlines()
reader = csv.reader(data.splitlines())
res = []
for category, _, _ in reader:
res.append(category)
return res
def test_families_missing_tags(family_tags, family_metadata):