mirror of
https://github.com/DragonMinded/bemaniutils.git
synced 2026-08-25 11:54:38 -05:00
Latest black changed some formatting, re-run it.
This commit is contained in:
@@ -725,7 +725,7 @@ class GlobalMusicData(BaseGlobalData):
|
||||
return allscores.get(userid, {}).get(songid, {}).get(songchart)
|
||||
|
||||
# First, seed with local scores
|
||||
for (userid, score) in localscores:
|
||||
for userid, score in localscores:
|
||||
add_score(userid, score)
|
||||
|
||||
# Second, merge in remote scorse
|
||||
@@ -830,7 +830,7 @@ class GlobalMusicData(BaseGlobalData):
|
||||
return allscores.get(songid, {}).get(songchart, (None, None))
|
||||
|
||||
# First, seed with local records
|
||||
for (userid, score) in localscores:
|
||||
for userid, score in localscores:
|
||||
add_score(userid, score)
|
||||
|
||||
# Second, merge in remote records
|
||||
|
||||
@@ -19,7 +19,6 @@ class GlobalUserData(BaseGlobalData):
|
||||
updates["area"] = area
|
||||
|
||||
def __format_iidx_profile(self, updates: Profile, profile: Profile) -> None:
|
||||
|
||||
area = profile.get_int("area", -1)
|
||||
if area != -1:
|
||||
updates["pid"] = area
|
||||
|
||||
Reference in New Issue
Block a user