pitrou commented on code in PR #45818:
URL: https://github.com/apache/arrow/pull/45818#discussion_r2068909794
##########
python/pyarrow/scalar.pxi:
##########
@@ -221,6 +221,8 @@ cdef class BooleanScalar(Scalar):
cdef CBooleanScalar* sp = <CBooleanScalar*> self.wrapped.get()
return sp.value if sp.is_valid else None
+ def __bool__(self):
+ return (self.as_py())
Review Comment:
Style nit: parentheses are generally not needed after `return`
```suggestion
def __bool__(self):
return self.as_py()
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]