Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple imports for an import name #2723

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,12 @@

import os
import sys
from importlib.metadata import version as get_version
from typing import Any

import sphinx
import sphinx.application

from importlib.metadata import version as get_version

import sphinx

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
Expand Down
1 change: 0 additions & 1 deletion src/zarr/core/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@
_parse_bytes_bytes_codec,
get_pipeline_class,
)
from zarr.storage import StoreLike
from zarr.storage._common import StorePath, ensure_no_existing_node, make_store_path

if TYPE_CHECKING:
Expand Down
2 changes: 1 addition & 1 deletion src/zarr/core/group.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
create_array,
)
from zarr.core.attributes import Attributes
from zarr.core.buffer import Buffer, default_buffer_prototype
from zarr.core.buffer import default_buffer_prototype
from zarr.core.common import (
JSON,
ZARR_JSON,
Expand Down
Loading