Skip to content

Commit b89b54f

Browse files
authored
Add type annotations
1 parent 313a2e6 commit b89b54f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyiceberg/expressions/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,10 +349,10 @@ class Not(IcebergBaseModel, BooleanExpression):
349349
type: TypingLiteral["not"] = Field(default="not")
350350
child: BooleanExpression = Field()
351351

352-
def __init__(self, child: BooleanExpression, **_) -> None:
352+
def __init__(self, child: BooleanExpression, **_: Any) -> None:
353353
super().__init__(child=child)
354354

355-
def __new__(cls, child: BooleanExpression, **_) -> BooleanExpression: # type: ignore
355+
def __new__(cls, child: BooleanExpression, **_: Any) -> BooleanExpression: # type: ignore
356356
if child is AlwaysTrue():
357357
return AlwaysFalse()
358358
elif child is AlwaysFalse():

0 commit comments

Comments
 (0)