diff --git a/recommendations/recommendation_utils.py b/recommendations/recommendation_utils.py index 9b7dbd4e..d35befd7 100644 --- a/recommendations/recommendation_utils.py +++ b/recommendations/recommendation_utils.py @@ -1,6 +1,7 @@ from copy import deepcopy from backend.Property import Property from statistics import mean +import random def estimate_sap_points(): @@ -9,7 +10,7 @@ def estimate_sap_points(): :return: """ - return 999 + return random.sample(range(4, 12), 1)[0] def r_value_per_mm_to_u_value(depth_mm: int, r_value_per_mm: float):