[F] Return list

This commit is contained in:
Hykilpikonna
2021-11-24 15:58:38 -05:00
parent 91e028eba0
commit a3f5fc4fc0
+2
View File
@@ -121,6 +121,8 @@ def remove_outliers(points: list[float], z_threshold: float = 3.5) -> list[float
is_outlier = modified_z_score > z_threshold
return [points[v] for v in range(len(points)) if not is_outlier[v]]
class EnhancedJSONEncoder(json.JSONEncoder):
def default(self, o):