Skip to content

Commit

Permalink
fxiups
Browse files Browse the repository at this point in the history
  • Loading branch information
dstansby committed Nov 27, 2024
1 parent 66b5f81 commit 606c4a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/tutorial.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# # Tutorial

import matplotlib.pyplot as plt
import pydantic
import zarr
import zarr.storage
from rich.pretty import pprint

import matplotlib.pyplot as plt
import pydantic
from ome_zarr_models.data import tutorial_data_path
from ome_zarr_models.v04 import Image
from ome_zarr_models.v04.coordinate_transformations import (
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ docs = [
"rich",
"matplotlib",
"zarr<3",
"pydantic-zarr",
]
pydantic = ["pydantic"]

Expand All @@ -36,6 +37,7 @@ docs = [
"rich",
"zarr<3",
"matplotlib",
"pydantic-zarr",
]
dev = [
"jupyter[notebook]>=1.1.1",
Expand Down
4 changes: 1 addition & 3 deletions src/ome_zarr_models/v04/image.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
from __future__ import annotations

from typing import Self

import zarr.errors
from pydantic import Field, model_validator
from pydantic_zarr.v2 import ArraySpec, GroupSpec
Expand All @@ -13,7 +11,7 @@

# Image is imported to the `ome_zarr_py.v04` namespace, so not
# listed here
__all__ = ["ImageAttrs", "Image"]
__all__ = ["Image", "ImageAttrs"]


def _check_arrays_compatible(data: Image) -> Image:
Expand Down

0 comments on commit 606c4a6

Please sign in to comment.