Skip to content

Commit 4ff4f7e

Browse files
committed
absolute imports
1 parent ef2da4d commit 4ff4f7e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/zarr/buffer/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
"""
2-
Public API for implementations of the Zarr Buffer interface.
2+
Implementations of the Zarr Buffer interface.
33
44
See Also
55
========
6-
arr.abc.buffer: Abstract base class for the Zarr Buffer interface.
6+
zarr.abc.buffer: Abstract base class for the Zarr Buffer interface.
77
"""
88

9-
from ..core.buffer import default_buffer_prototype
10-
from . import cpu, gpu
9+
from zarr.buffer import cpu, gpu
10+
from zarr.core.buffer import default_buffer_prototype
1111

1212
__all__ = ["cpu", "default_buffer_prototype", "gpu"]

0 commit comments

Comments
 (0)