standardization KaleidxScope variable names

This commit is contained in:
SoulGateKey
2025-04-04 05:42:53 +08:00
parent cc7afa6b67
commit 9a7fc007bc
3 changed files with 18 additions and 19 deletions

View File

@@ -284,8 +284,8 @@ class Mai2DX(Mai2Base):
# added in PRiSM
if "userKaleidxScopeList" in upsert and len(upsert["userKaleidxScopeList"]) > 0:
for kaleidx_scope in upsert["userKaleidxScopeList"]:
await self.data.score.put_user_kaleidx_scope(user_id, kaleidx_scope)
for kaleidxscope in upsert["userKaleidxScopeList"]:
await self.data.score.put_user_kaleidxscope(user_id, kaleidxscope)
return {"returnCode": 1, "apiName": "UpsertUserAllApi"}