hiring_assessment/backend/app/services/investor_predictor.py
2025-02-19 16:25:48 +01:00

7 lines
119 B
Python

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