Jon Solow
commited on
Commit
•
0b17efb
1
Parent(s):
28ee917
Set scores 0-0 and pregame
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 = "Pregame"
|
66 |
score = 0
|
67 |
+
game_score = "0 - 0"
|
68 |
stats: list = []
|
69 |
player_stats = get_player_stats_html_str(stats)
|
70 |
|