Skip to content

Commit

Permalink
Disable Root/Leaf specifiations
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmoore committed May 3, 2022
1 parent 531a200 commit bc31cfa
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions ome_zarr/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,12 @@ def __init__(
if not found:
self.specs.append(Implicit(self))

# Load up the hierarchy
if Leaf.matches(zarr):
self.specs.append(Leaf(self))
else:
self.specs.append(Root(self))
if False: # Temporarily disable. See #174
# Load up the hierarchy
if Leaf.matches(zarr):
self.specs.append(Leaf(self))
else:
self.specs.append(Root(self))

@overload
def first(self, spectype: Type["Well"]) -> Optional["Well"]:
Expand Down

0 comments on commit bc31cfa

Please sign in to comment.