Viraj0112's picture
Upload folder using huggingface_hub
03a907a verified
def safe_divide(a: float, b: float) -> float:
"""Divide a by b; only return inf for division by zero."""
try:
return a / b
except Exception:
# BUG: catches unrelated errors too broadly.
return float("inf")