Skip to content

Commit 03d3610

Browse files
committed
make lint was complaining
1 parent 24a356e commit 03d3610

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

‎pyiceberg/expressions/literals.py‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def literal(value: L) -> Literal[L]:
175175

176176
class AboveMax(Literal[L]):
177177
def __init__(self, value: L, value_type: type[L], /, **data: Any) -> None:
178-
super().__init__(value, value_type, **data)
178+
Literal.__init__(self, value, value_type, **data)
179179

180180
def __repr__(self) -> str:
181181
"""Return the string representation of the AboveMax class."""
@@ -188,7 +188,7 @@ def __str__(self) -> str:
188188

189189
class BelowMin(Literal[L]):
190190
def __init__(self, value: L, value_type: type[L], /, **data: Any) -> None:
191-
super().__init__(value, value_type, **data)
191+
Literal.__init__(self, value, value_type, **data)
192192

193193
def __repr__(self) -> str:
194194
"""Return the string representation of the BelowMin class."""

0 commit comments

Comments
 (0)