Skip to content

Commit 368d3ea

Browse files
committed
rewire imports
1 parent 8a82ccd commit 368d3ea

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/pydantic_zarr/experimental/core.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
import zarr
1919
from zarr.storage._common import StoreLike
2020

21+
BaseAttributes = Mapping[str, object] | BaseModel
22+
2123
IncEx: TypeAlias = set[int] | set[str] | dict[int, Any] | dict[str, Any] | None
2224

2325
AccessMode: TypeAlias = Literal["w", "w+", "r", "a"]

src/pydantic_zarr/experimental/v2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from pydantic import BaseModel, Field, field_validator, model_validator
2424
from pydantic.functional_validators import BeforeValidator
2525

26-
from pydantic_zarr.core import (
26+
from pydantic_zarr.experimental.core import (
2727
BaseAttributes,
2828
IncEx,
2929
StrictBase,

src/pydantic_zarr/experimental/v3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from pydantic import BeforeValidator, Field, field_validator
2424
from typing_extensions import TypedDict
2525

26-
from pydantic_zarr.core import (
26+
from pydantic_zarr.experimental.core import (
2727
BaseAttributes,
2828
IncEx,
2929
StrictBase,

0 commit comments

Comments
 (0)