You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by fo...@apache.org on 2022/09/20 11:19:39 UTC

[iceberg] 01/01: Python: Fix docstring

This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch fd-fix-docstring
in repository https://gitbox.apache.org/repos/asf/iceberg.git

commit aa0a00ad673a22de489a06639f8aafe56be6d4bb
Author: Fokko Driesprong <fo...@apache.org>
AuthorDate: Tue Sep 20 13:19:31 2022 +0200

    Python: Fix docstring
---
 python/pyiceberg/expressions/base.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/pyiceberg/expressions/base.py b/python/pyiceberg/expressions/base.py
index f4584fdb4c..c336b19acd 100644
--- a/python/pyiceberg/expressions/base.py
+++ b/python/pyiceberg/expressions/base.py
@@ -545,7 +545,7 @@ class BooleanExpressionVisitor(Generic[T], ABC):
         """Visit method for a Not boolean expression
 
         Args:
-            result (T): The result of visiting the child of the Not boolean expression
+            child_result (T): The result of visiting the child of the Not boolean expression
         """
 
     @abstractmethod