Skip to content

Commit

Permalink
Forgot to include dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jontyms committed Sep 10, 2024
1 parent c08ff1a commit 350256d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/util/plinko.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from typing import List

import requests
from sqlalchemy.orm import selectinload

from app.models.user import DiscordModel, UserModel
from app.util.database import Session, get_user
Expand Down Expand Up @@ -40,7 +41,7 @@ def get_team(session: Session, user_id):

# Database connection to get user...

user_data = get_user(session, uuid.UUID(user_id))
user_data: UserModel = get_user(session, uuid.UUID(user_id))

user_team_number = user_data.team_number
user_run = user_data.assigned_run
Expand Down

0 comments on commit 350256d

Please sign in to comment.