Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
noloerino committed Jul 22, 2024
1 parent bbf014e commit 9f253f7
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions modin/core/storage_formats/base/query_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,6 @@ class BaseQueryCompiler(
lazy_column_count : bool, default False
True if the backend defers computations of the number of columns (`len(df.columns)`).
Used by the frontend to avoid unnecessary execution or defer error validation.
lazy_shape : bool
True if either lazy_row_count or lazy_column_count is True.
_shape_hint : {"row", "column", None}, default: None
Shape hint for frames known to be a column or a row, otherwise None.
Expand Down Expand Up @@ -219,9 +217,9 @@ def default_to_pandas(self, pandas_op, *args, **kwargs) -> Self:
@property
def lazy_shape(self):
"""
Whether either of the underlying dataframe's dimensions (row count/column count) are
computed lazily. If True, the frontend should avoid length/shape checks as much
as possible.
Whether either of the underlying dataframe's dimensions (row count/column count) are computed lazily.
If True, the frontend should avoid length/shape checks as much as possible.
Returns
-------
Expand Down

0 comments on commit 9f253f7

Please sign in to comment.