Skip to content

Commit

Permalink
Ruff pre-commit updates
Browse files Browse the repository at this point in the history
  • Loading branch information
kasztp committed Oct 12, 2024
1 parent 28f788c commit 6f5cf42
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions chispa/dataframe_comparer.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,7 @@ def assert_approx_df_equality(
)
elif allow_nan_equality:
assert_generic_rows_equality(
df1.collect(),
df2.collect(),
are_rows_equal_enhanced,
{"allow_nan_equality": True},
formats=formats
df1.collect(), df2.collect(), are_rows_equal_enhanced, {"allow_nan_equality": True}, formats=formats
)
else:
assert_basic_rows_equality(df1.collect(), df2.collect(), formats=formats)

0 comments on commit 6f5cf42

Please sign in to comment.