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

This commit is contained in:
Ashley Graves 2024-08-01 01:25:56 +02:00
parent 23b7fcfb42
commit c12f3fe13d

View file

@ -2,18 +2,20 @@
from pip._vendor import requests from pip._vendor import requests
from pip._vendor import tomli from pip._vendor import tomli
import json
import glob import glob
import os import os
def noop():
return
mods = dict() mods = dict()
count = dict() count = dict()
count["server"] = 0 count["server"] = 0
count["client"] = 0 count["client"] = 0
count["both"] = 0 count["both"] = 0
cache = dict()
with open("licenses.json") as f:
cache = json.load(f)
for mod in glob.glob("pack/mods/*.toml"): for mod in glob.glob("pack/mods/*.toml"):
with open(mod, "r") as f: with open(mod, "r") as f:
data = tomli.load(f) data = tomli.load(f)