diff --git a/modin/core/storage_formats/pandas/query_compiler.py b/modin/core/storage_formats/pandas/query_compiler.py index 1f88941ba16..b49a95bdc35 100644 --- a/modin/core/storage_formats/pandas/query_compiler.py +++ b/modin/core/storage_formats/pandas/query_compiler.py @@ -1615,16 +1615,16 @@ def expanding_corr( args=args, kwargs=kwargs, ), - shape_preserved=True, - ) + ), + shape_preserved=True, ) rolling_quantile = Fold.register( lambda df, rolling_kwargs, q, interpolation, **kwargs: pandas.DataFrame( df.rolling(**rolling_kwargs).quantile( q=q, interpolation=interpolation, **kwargs ), - shape_preserved=True, - ) + ), + shape_preserved=True, ) rolling_rank = Fold.register( lambda df, rolling_kwargs, method, ascending, pct, numeric_only, **kwargs: pandas.DataFrame( @@ -1635,8 +1635,8 @@ def expanding_corr( numeric_only=numeric_only, **kwargs, ), - shape_preserved=True, - ) + ), + shape_preserved=True, ) def rolling_corr(self, axis, rolling_kwargs, other, pairwise, *args, **kwargs):