Skip to content

Commit

Permalink
Place '...' statements on newline
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmoore committed Feb 14, 2024
1 parent b04b384 commit 32a6129
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ome_zarr/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,14 @@ def __init__(
self.specs.append(Well(self))

@overload
def first(self, spectype: Type["Well"]) -> Optional["Well"]: ...
def first(self, spectype: Type["Well"]) -> Optional["Well"]:
# Handled by the generic case
...

@overload
def first(self, spectype: Type["Plate"]) -> Optional["Plate"]: ...
def first(self, spectype: Type["Plate"]) -> Optional["Plate"]:
# Handled by the generic case
...

def first(self, spectype: Type["Spec"]) -> Optional["Spec"]:
for spec in self.specs:
Expand Down

0 comments on commit 32a6129

Please sign in to comment.