1
0
Fork 0

removed print statements

This commit is contained in:
Wanich Keatkajonjumroen 2023-09-02 05:04:59 +09:00
parent eaf9e0cf09
commit 1f545aed41
1 changed files with 0 additions and 3 deletions

View File

@ -1003,16 +1003,13 @@ class OngekiBase:
Added in Bright
"""
rivals = []
print(data)
for rival in data["userRivalList"]:
name = self.data.profile.get_profile_name(
rival["rivalUserId"], self.version
)
if name is None:
continue
print(name)
rivals.append({"rivalUserId": rival["rivalUserId"], "rivalUserName": name})
print(rivals)
return {
"userId": data["userId"],
"length": len(rivals),