From 76aec6507f2515f72bf3e78ee6dc57b0e4219ba3 Mon Sep 17 00:00:00 2001 From: Anatoly Myachev Date: Fri, 20 Oct 2023 14:26:27 +0200 Subject: [PATCH] fix Signed-off-by: Anatoly Myachev --- modin/utils.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modin/utils.py b/modin/utils.py index c6a473a1307..73d6b1c9c03 100644 --- a/modin/utils.py +++ b/modin/utils.py @@ -606,7 +606,7 @@ def try_cast_to_pandas(obj: Any, squeeze: bool = False) -> Any: return obj -def execute(obj: Any, *, trigger_hdk_import: bool = False) -> None: +def execute(obj: Any) -> None: """ Trigger the `obj` lazy computations, if any, and wait for them to complete. @@ -614,8 +614,6 @@ def execute(obj: Any, *, trigger_hdk_import: bool = False) -> None: ---------- obj : Any An object to trigger lazy computations. - trigger_hdk_import : bool, default: False - Trigger import execution. Makes sense only for HDK storage format. """ if not hasattr(obj, "_query_compiler"): return