Skip to content

Commit b40bbcd

Browse files
committed
linter
1 parent 6ec7cdc commit b40bbcd

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

modin/pandas/base.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4523,7 +4523,11 @@ def set_backend(
45234523
try:
45244524
from tqdm.auto import trange
45254525

4526-
progress_iter = iter(trange(progress_split_count, desc=desc, bar_format='{desc} [{bar}]'))
4526+
progress_iter = iter(
4527+
trange(
4528+
progress_split_count, desc=desc, bar_format="{desc} [{bar}]"
4529+
)
4530+
)
45274531
except ImportError:
45284532
# Fallback to simple print statement when tqdm is not available.
45294533
# Print to stderr to match tqdm's behavior.

modin/tests/pandas/test_backend.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,10 @@ def do_groupby(series):
422422
@pytest.mark.parametrize(
423423
"switch_operation,expected_output",
424424
[
425-
(None, "Transferring: Python_Tes → Pandas | | est. max shape (3,1) "),
425+
(
426+
None,
427+
"Transferring: Python_Tes → Pandas | | est. max shape (3,1) ",
428+
),
426429
(
427430
"test_operation",
428431
"Transferring: Python_Tes → Pandas | test_opera | est. max shape (3,1) ",

0 commit comments

Comments
 (0)