From 0b95e0e6f062102400bb3c522d31a21161f9e82b Mon Sep 17 00:00:00 2001 From: johncf Date: Sun, 13 Oct 2024 21:36:12 +0530 Subject: [PATCH] fix pylint error --- pillow_heif/heif.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pillow_heif/heif.py b/pillow_heif/heif.py index 4c697cce..ddecd1b4 100644 --- a/pillow_heif/heif.py +++ b/pillow_heif/heif.py @@ -142,9 +142,6 @@ def to_pillow(self) -> Image.Image: class HeifAuxImage(BaseImage): """Class representing the auxiliary image associated with the :py:class:`~pillow_heif.HeifImage` class.""" - def __init__(self, c_image): - super().__init__(c_image) - def __repr__(self): return f"<{self.__class__.__name__} {self.size[0]}x{self.size[1]} {self.mode}>"