Skip to content

Commit

Permalink
naming
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasdavis committed Oct 25, 2023
1 parent 395464e commit 79770cb
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/dask_awkward/lib/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 79770cb

Please sign in to comment.