We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 313a2e6 commit b89b54fCopy full SHA for b89b54f
pyiceberg/expressions/__init__.py
@@ -349,10 +349,10 @@ class Not(IcebergBaseModel, BooleanExpression):
349
type: TypingLiteral["not"] = Field(default="not")
350
child: BooleanExpression = Field()
351
352
- def __init__(self, child: BooleanExpression, **_) -> None:
+ def __init__(self, child: BooleanExpression, **_: Any) -> None:
353
super().__init__(child=child)
354
355
- def __new__(cls, child: BooleanExpression, **_) -> BooleanExpression: # type: ignore
+ def __new__(cls, child: BooleanExpression, **_: Any) -> BooleanExpression: # type: ignore
356
if child is AlwaysTrue():
357
return AlwaysFalse()
358
elif child is AlwaysFalse():
0 commit comments