summaryrefslogtreecommitdiff
path: root/src/match_up/utilities.py
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2024-12-02 19:54:11 +0100
committerKaran Jayachandra <mail@karanjayachandra.com>2024-12-02 19:54:11 +0100
commited182035cdd39659563b25ffef5387578db25799 (patch)
tree00b298d5674c75d076a6356b4b95b1673b3cbd7b /src/match_up/utilities.py
parentb9967b20dddaed6673d2333edc7cdee735ed1395 (diff)
Fixed issue of the database not loading the teams
Diffstat (limited to 'src/match_up/utilities.py')
-rw-r--r--src/match_up/utilities.py1
1 files changed, 1 insertions, 0 deletions
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,
)