fix : move tokens.json into src
release-tag / release-image (push) Successful in 10s

This commit is contained in:
2024-08-06 13:42:43 +02:00
parent 819aaa2a4e
commit b373443e23
2 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ from drawsvg.drawing import Drawing
tokens: dict[str, list[str]] = {}
with open("tokens.json", encoding="utf-8") as f:
with open("src/tokens.json", encoding="utf-8") as f:
tokens = json.load(f)
for token_data in tokens:
View File