From de07cbceb8a533510c389e20ca43ea76dc7a879c Mon Sep 17 00:00:00 2001 From: j-t-1 <120829237+j-t-1@users.noreply.github.com> Date: Tue, 2 Jul 2024 11:29:40 +0100 Subject: [PATCH] MAINT: Remove redundant super() (#2734) --- pypdf/annotations/_markup_annotations.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pypdf/annotations/_markup_annotations.py b/pypdf/annotations/_markup_annotations.py index c1c4e34f0..4db8dfdbf 100644 --- a/pypdf/annotations/_markup_annotations.py +++ b/pypdf/annotations/_markup_annotations.py @@ -75,7 +75,6 @@ def __init__( **kwargs: Any, ): super().__init__(**kwargs) - super() self[NameObject("/Subtype")] = NameObject("/Text") self[NameObject("/Rect")] = RectangleObject(rect) self[NameObject("/Contents")] = TextStringObject(text)