pull/569/head
Akegarasu 2024-10-31 00:54:22 +08:00
parent fff49ed25b
commit 1836aadeba
No known key found for this signature in database
GPG Key ID: DACA951FEBA569A2
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ async def load_schemas():
with open(os.path.join(schema_dir, schema_name), encoding="utf-8") as f:
content = f.read()
avaliable_schemas.append({
"name": schema_name.strip(".ts"),
"name": schema_name.rstrip(".ts"),
"schema": content,
"hash": lambda_hash(content)
})