Skip to content

Commit f1c9186

Browse files
Consider using in
1 parent 0019733 commit f1c9186

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/zarr/core/dtype/npy/common.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -384,9 +384,7 @@ def check_json_float_v2(data: JSON) -> TypeGuard[JSONFloatV2]:
384384
Bool
385385
True if the data is a float, False otherwise.
386386
"""
387-
if data == "NaN" or data == "Infinity" or data == "-Infinity":
388-
return True
389-
return isinstance(data, float | int)
387+
return data in {"NaN", "Infinity", "-Infinity"} or isinstance(data, float | int)
390388

391389

392390
def check_json_float_v3(data: JSON) -> TypeGuard[JSONFloatV3]:

0 commit comments

Comments
 (0)