Skip to content

Commit

Permalink
fix minor bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mzouink committed Nov 6, 2024
1 parent 895b22f commit fef8553
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/notebooks/minimal_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
print("Data saved to cells3d.zarr")
import zarr

print(zarr.open("cells3d.zarr", mode="r").tree())
print(zarr.open("cells3d.zarr").tree())
# %% [markdown]
# Here we show a slice of the raw data:
# %%
Expand Down
2 changes: 1 addition & 1 deletion examples/starter_tutorial/minimal_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
print("Data saved to cells3d.zarr")
import zarr

print(zarr.open("cells3d.zarr", mode="r").tree())
print(zarr.open("cells3d.zarr").tree())
# %% [markdown]
# Here we show a slice of the raw data:
# %%
Expand Down

0 comments on commit fef8553

Please sign in to comment.