Jon Solow
commited on
Commit
·
83482b1
1
Parent(s):
773f7ef
Remove hard-coded pregame and 0-0
Browse files
src/pages/11_Scoreboard.py
CHANGED
@@ -62,9 +62,9 @@ def get_roster_html_str(week: int, user_map: dict[str, PlayerOption]) -> str:
|
|
62 |
def get_player_html_str(player_opt: PlayerOption) -> str:
|
63 |
# TODO
|
64 |
multiplier = 1
|
65 |
-
game_status = "
|
66 |
score = 0
|
67 |
-
game_score = "
|
68 |
stats: list = []
|
69 |
player_stats = get_player_stats_html_str(stats)
|
70 |
|
|
|
62 |
def get_player_html_str(player_opt: PlayerOption) -> str:
|
63 |
# TODO
|
64 |
multiplier = 1
|
65 |
+
game_status = " "
|
66 |
score = 0
|
67 |
+
game_score = " "
|
68 |
stats: list = []
|
69 |
player_stats = get_player_stats_html_str(stats)
|
70 |
|