hiring_assessment/backend/app/services/investor_predictor.py
2025-02-19 11:59:11 +01:00

6 lines
120 B
Python

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