Skip to content

Commit bc5ca27

Browse files
Use in and or instead of multiple if's (#3266)
1 parent df40f4f commit bc5ca27

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 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)