From 549d8ec9d6e762bd5a627562e3c6bad4eabd7647 Mon Sep 17 00:00:00 2001 From: Fokko Driesprong Date: Tue, 21 Oct 2025 20:05:07 +0200 Subject: [PATCH] nit: Remove dangling string --- pyiceberg/expressions/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyiceberg/expressions/__init__.py b/pyiceberg/expressions/__init__.py index 2d7333838c..16210bae68 100644 --- a/pyiceberg/expressions/__init__.py +++ b/pyiceberg/expressions/__init__.py @@ -373,8 +373,6 @@ def __getnewargs__(self) -> Tuple[BooleanExpression]: """Pickle the Not class.""" return (self.child,) - """TRUE expression.""" - class AlwaysTrue(BooleanExpression, Singleton, IcebergRootModel[str]): """TRUE expression."""