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:38 UTC

[iceberg] branch fd-fix-docstring created (now aa0a00ad67)

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

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


      at aa0a00ad67 Python: Fix docstring

This branch includes the following new commits:

     new aa0a00ad67 Python: Fix docstring

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[iceberg] 01/01: Python: Fix docstring

Posted by fo...@apache.org.
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