Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed Apr 19, 2024
1 parent cb90479 commit edc77de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modin/tests/pandas/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1088,9 +1088,9 @@ def eval_io_from_str(csv_str: str, unique_filename: str, **kwargs):

def create_test_dfs(*args, **kwargs) -> tuple[pd.DataFrame, pandas.DataFrame]:
post_fn = kwargs.pop("post_fn", lambda df: df)
post_fn2 = lambda df: post_fn(df).convert_dtypes(
post_fn2 = lambda df: post_fn(df).convert_dtypes( # noqa: E731
dtype_backend="dtype_backend"
) # noqa: E731
)
return tuple(
map(
post_fn2, [pd.DataFrame(*args, **kwargs), pandas.DataFrame(*args, **kwargs)]
Expand Down

0 comments on commit edc77de

Please sign in to comment.