Skip to content

Commit c66bace

Browse files
Fix docstrings
Signed-off-by: Vraj Patel <[email protected]>
1 parent e782baf commit c66bace

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

modin/pandas/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4501,7 +4501,8 @@ def set_backend(
45014501

45024502
def transfer_data() -> BaseQueryCompiler:
45034503
"""
4504-
Attempts to transfer data based on this preference order:
4504+
Attempt to transfer data based on the following preference order.
4505+
45054506
1. The `self._query_compiler.move_to()`, if implemented.
45064507
2. Otherwise, tries the other `query_compiler`'s `move_from()` method.
45074508
3. If both methods return `NotImplemented`, it falls back to materializing

modin/pandas/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
-----
7979
This method will attempt to use the starting and new backend's move_from or move_to
8080
methods if the backends implement them. Otherwise, it will
81+
8182
1) convert the data in this ``{class_name}`` to a pandas DataFrame in this
8283
Python process
8384
2) load the data from pandas to the new backend.

0 commit comments

Comments
 (0)