Skip to content

Commit

Permalink
fix unexpected return err
Browse files Browse the repository at this point in the history
  • Loading branch information
MoYoez committed Aug 23, 2023
1 parent 5261ef7 commit 5e0e008
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions method.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ def get_songs_stat_main(gameRecord, songid, diff):
if songId == songid:
if record[0]["level"] == getdiff:
return record[0]
else:
continue
return None
else:
continue
return None


class BestsRender:
Expand Down

0 comments on commit 5e0e008

Please sign in to comment.