Skip to content

Commit adb9182

Browse files
Update to class ImageReader docstring
The docstring for class ImageReader should use the correct class name in the example use case: This class is meant to be harnessed to a scope like this: >>> with ImageReader(path) as reader: >>> ....
1 parent 07c6c3c commit adb9182

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bioformats/formatreader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ class ImageReader(object):
547547
548548
This class is meant to be harnessed to a scope like this:
549549
550-
>>> with GetImageReader(path) as reader:
550+
>>> with ImageReader(path) as reader:
551551
>>> ....
552552
553553
It uses `__enter__` and `__exit__` to manage the random access stream

0 commit comments

Comments
 (0)