test
Some checks failed
Update wiki / test (push) Failing after 12s

This commit is contained in:
Ashley Graves 2024-07-27 14:40:49 +02:00
parent c81e9f97a1
commit 36a46826d8
2 changed files with 6 additions and 1 deletions

View file

@ -1,8 +1,12 @@
#!/usr/bin/env python
import tomllib
import glob
import os
#print(os.environ["GITHUB_TOKEN"])
for mod in glob.glob("pack/mods/*.toml"):
print(mod)
with open(mod, "rb") as f:
data = tomllib.load(f)
print(mod)
print(data)