Skip to content

Commit

Permalink
Style.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Apr 29, 2022
1 parent 0fa6604 commit 1f037b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/cudf/cudf/_fuzz_testing/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,8 @@ def sanitize(value, struct_type):
return tuple(values_list)

has_nulls_or_nullable_dtype = any(
(col := df[colname]).dtype in pandas_dtypes_to_np_dtypes or col.isnull().any()
(col := df[colname]).dtype in pandas_dtypes_to_np_dtypes
or col.isnull().any()
for colname in df.columns
)
pdf = df.copy(deep=True)
Expand Down

0 comments on commit 1f037b0

Please sign in to comment.