From fa2cf289470ebe40ccd2aa89759dc4e3fb4ea769 Mon Sep 17 00:00:00 2001 From: Angus Hollands Date: Sat, 2 Dec 2023 17:39:44 +0000 Subject: [PATCH] docs: fix docstring for `dask_method` --- src/dask_awkward/lib/core.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/dask_awkward/lib/core.py b/src/dask_awkward/lib/core.py index 0ae0e97c..fdfd6f7d 100644 --- a/src/dask_awkward/lib/core.py +++ b/src/dask_awkward/lib/core.py @@ -253,6 +253,8 @@ def dask_method(maybe_func: F, *, no_dispatch: bool = False) -> _DaskMethod: ---------- maybe_func : Callable The method implementation to decorate. + no_dispatch : bool + If True, re-use the main getter function as the Dask implementation Returns ------- @@ -272,6 +274,8 @@ def dask_method( ---------- maybe_func : Callable, optional The method implementation to decorate. + no_dispatch : bool + If True, re-use the main getter function as the Dask implementation Returns ------- @@ -288,6 +292,8 @@ def dask_method(maybe_func=None, *, no_dispatch=False): ---------- maybe_func : Callable, optional The method implementation to decorate. + no_dispatch : bool + If True, re-use the main getter function as the Dask implementation Returns -------