Skip to content

Commit

Permalink
fix: star
Browse files Browse the repository at this point in the history
Signed-off-by: Dup4 <[email protected]>
  • Loading branch information
Dup4 committed Nov 16, 2024
1 parent 0f600ad commit 3b71fcb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions origin-data/icpc/49th/shanghai/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ def handle_teams(teams: Teams):
team.coach = members[3]
team.coach = team.coach.replace("(教练)", "")

if team.name.startswith("⭐"):
team.name = team.name.replace("⭐", "")

if team.name.startswith("🌟"):
team.name = team.name.replace("🌟", "")

Expand Down

0 comments on commit 3b71fcb

Please sign in to comment.