Skip to content

Commit

Permalink
various fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
topper-123 committed Apr 25, 2023
1 parent 78740c7 commit c1a1a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/extension/masked_shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def check_reduce_with_wrap(self, ser: pd.Series, op_name: str, skipna: bool):

arr = ser.array

float32_cond = arr.dtype == "Float32" and is_platform_windows() or not IS64
float32_cond = arr.dtype == "Float32" or (is_platform_windows() or not IS64)
float_dtype = "Float32" if float32_cond else "Float64"

if op_name in ["mean", "median", "var", "std", "skew"]:
Expand Down

0 comments on commit c1a1a39

Please sign in to comment.