hiring_assessment/backend/app/services/investor_predictor.py
Jacob Windsor 041168ad02 Fix import
2025-02-19 17:52:17 +01:00

9 lines
146 B
Python

import random
from ..models import User
class InvestorPredictor:
def is_investor(user: User) -> bool:
return random.random() < 0.5