icinga2-checks/checker/types.py

15 lines
288 B
Python

from typing import Union
def try_float(value: str) -> Union[int, float, str]:
try:
return float(value)
except:
pass
try:
return int(value)
except:
pass
raise ValueError(f"Could not convert {value} to float or int")
# return value