]> git.ipfire.org Git - thirdparty/google/fonts.git/commitdiff
fix parsing 9638/head
authorMarc Foley <m.foley.88@gmail.com>
Fri, 4 Jul 2025 09:08:04 +0000 (10:08 +0100)
committerMarc Foley <m.foley.88@gmail.com>
Fri, 4 Jul 2025 09:08:04 +0000 (10:08 +0100)
.ci/test_font_tags.py

index 1feba4ab09911825d9d6e024203caa53a6b67f7f..6e71027cc0d38684e750f6d81c9760daaaecdb44 100644 (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):