Skip to content

Commit

Permalink
vfv: fix typo in docstring (missing close parentheses)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazzamuto committed Jan 15, 2021
1 parent 4847b01 commit dec280b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions zetastitcher/io/virtual_fused_volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,9 @@ class VirtualFusedVolume:
>>> vfv.peek[40, ..., 1000:1500, 1800:2400]
[
('0000_0000.tiff', [slice(40, 41, 1), slice(1000, 1500, 1), slice(1800, 2048, 1)],
('0100_0000.tiff', [slice(40, 41, 1), slice(1000, 1500, 1), slice(0, 453, 1)]
('0000_0000.tiff', [slice(40, 41, 1), slice(1000, 1500, 1), slice(1800, 2048, 1)]),
('0100_0000.tiff', [slice(40, 41, 1), slice(1000, 1500, 1), slice(0, 453, 1)]),
]
"""
def __init__(self, file_or_matrix):
if isinstance(file_or_matrix, str):
Expand Down

0 comments on commit dec280b

Please sign in to comment.