From ed182035cdd39659563b25ffef5387578db25799 Mon Sep 17 00:00:00 2001 From: Karan Jayachandra Date: Mon, 2 Dec 2024 19:54:11 +0100 Subject: Fixed issue of the database not loading the teams --- src/match_up/utilities.py | 1 + 1 file changed, 1 insertion(+) (limited to 'src/match_up/utilities.py') diff --git a/src/match_up/utilities.py b/src/match_up/utilities.py index 7d7de08..fa82b58 100644 --- a/src/match_up/utilities.py +++ b/src/match_up/utilities.py @@ -126,6 +126,7 @@ def _init_database_from_csv(session, csv_location: str) -> None: first=entry["first"], last=entry["last"], level=entry["skill"], + team=entry["team"], status=False, count=0, ) -- cgit v1.3.1