9 lines
146 B
Python
9 lines
146 B
Python
import random
|
|
|
|
from ..models import User
|
|
|
|
|
|
class InvestorPredictor:
|
|
def is_investor(user: User) -> bool:
|
|
return random.random() < 0.5
|