forked from Hay1tsme/artemis
removed print statements
This commit is contained in:
parent
eaf9e0cf09
commit
1f545aed41
@ -1003,16 +1003,13 @@ class OngekiBase:
|
|||||||
Added in Bright
|
Added in Bright
|
||||||
"""
|
"""
|
||||||
rivals = []
|
rivals = []
|
||||||
print(data)
|
|
||||||
for rival in data["userRivalList"]:
|
for rival in data["userRivalList"]:
|
||||||
name = self.data.profile.get_profile_name(
|
name = self.data.profile.get_profile_name(
|
||||||
rival["rivalUserId"], self.version
|
rival["rivalUserId"], self.version
|
||||||
)
|
)
|
||||||
if name is None:
|
if name is None:
|
||||||
continue
|
continue
|
||||||
print(name)
|
|
||||||
rivals.append({"rivalUserId": rival["rivalUserId"], "rivalUserName": name})
|
rivals.append({"rivalUserId": rival["rivalUserId"], "rivalUserName": name})
|
||||||
print(rivals)
|
|
||||||
return {
|
return {
|
||||||
"userId": data["userId"],
|
"userId": data["userId"],
|
||||||
"length": len(rivals),
|
"length": len(rivals),
|
||||||
|
Loading…
Reference in New Issue
Block a user