-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
I have removed the trailing code from distribution_benchmark.py and stability_benchmark.py but this was the orginal. What was the context / intention behind this function?
def safe_float(value):
"""Safely convert value to float, handling None and NaN."""
return value
# if value is None:
# raise ValueError
# float_val = float(value)
# if math.isnan(float_val):
# raise ValueError
# return float_valReactions are currently unavailable