Skip to content

Commit 08ac700

Browse files
Use or instead of many if
1 parent 0019733 commit 08ac700

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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 == "NaN" or data == "Infinity" or data == "-Infinity" or isinstance(data, float | int)
390388

391389

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

0 commit comments

Comments
 (0)