From 79770cbe9d37bba0bddff0b15a578118e2c68657 Mon Sep 17 00:00:00 2001 From: Doug Davis Date: Wed, 25 Oct 2023 13:29:25 -0500 Subject: [PATCH] naming --- src/dask_awkward/lib/core.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/dask_awkward/lib/core.py b/src/dask_awkward/lib/core.py index 238964d4..183b4bc8 100644 --- a/src/dask_awkward/lib/core.py +++ b/src/dask_awkward/lib/core.py @@ -37,13 +37,9 @@ from dask.delayed import Delayed from dask.highlevelgraph import HighLevelGraph from dask.threaded import get as threaded_get -from dask.utils import ( - IndexCallable, - OperatorMethodMixin, - funcname, - is_arraylike, - key_split, -) +from dask.utils import IndexCallable +from dask.utils import OperatorMethodMixin as DaskOperatorMethodMixin +from dask.utils import funcname, is_arraylike, key_split from dask_awkward.layers import AwkwardBlockwiseLayer, AwkwardMaterializedLayer from dask_awkward.lib.optimize import all_optimizations @@ -72,7 +68,7 @@ log = logging.getLogger(__name__) -class Scalar(DaskMethodsMixin, OperatorMethodMixin): +class Scalar(DaskMethodsMixin, DaskOperatorMethodMixin): """Single partition Dask collection representing a lazy Scalar. The class constructor is not intended for users. Instances of this