blackify (again)

This commit is contained in:
Lincoln Stein 2023-08-20 16:06:01 -04:00
parent 766cb887e4
commit 5b6069b916

View File

@ -234,6 +234,6 @@ def int_or_float_or_str(value: str) -> Union[int, float, str]:
pass
try:
return float(value)
except Exception as e: # noqa F841
except Exception as e: # noqa F841
pass
return str(value)