Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhassell committed Nov 6, 2024
1 parent 5754f8b commit bd5dd16
Show file tree
Hide file tree
Showing 16 changed files with 462 additions and 492 deletions.
2 changes: 1 addition & 1 deletion cf/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
Find the total amount of physical memory (in bytes).
CHUNKSIZE: `int`
The chunk size (in bytes) for data storage and processing.
The Dask chunk size (in bytes). See `cf.chunksize`.
TEMPDIR: `str`
The location to store temporary files. By default it is the
Expand Down
2 changes: 1 addition & 1 deletion cf/data/array/fullarray.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import numpy as np
from cfdm.data.mixin import IndexMixin

from ...functions import indices_shape, parse_indices
from .abstract import Array
from .mixin import IndexMixin

_FULLARRAY_HANDLED_FUNCTIONS = {}

Expand Down
3 changes: 2 additions & 1 deletion cf/data/array/mixin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
from .cfamixin import CFAMixin
from .compressedarraymixin import CompressedArrayMixin
from .filearraymixin import FileArrayMixin
from .indexmixin import IndexMixin

# from .indexmixin import IndexMixin
Loading

0 comments on commit bd5dd16

Please sign in to comment.