aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/reader/image/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bsie/reader/image/__init__.py')
-rw-r--r--bsie/reader/image/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsie/reader/image/__init__.py b/bsie/reader/image/__init__.py
index b7587e7..1f290b5 100644
--- a/bsie/reader/image/__init__.py
+++ b/bsie/reader/image/__init__.py
@@ -31,7 +31,7 @@ __all__: typing.Sequence[str] = (
class Image(chain.ReaderChain[PIL.Image.Image]): # pylint: disable=too-few-public-methods
"""Read an image file."""
- def __init__(self, cfg):
+ def __init__(self, cfg: typing.Optional[typing.Any] = None):
super().__init__(_FILE_FORMAT_READERS, cfg)
## EOF ##