zero323 commented on a change in pull request #34226:
URL: https://github.com/apache/spark/pull/34226#discussion_r726603135
##########
File path: python/pyspark/sql/column.py
##########
@@ -804,7 +912,11 @@ def cast(self, dataType):
astype = copy_func(cast, sinceversion=1.4, doc=":func:`astype` is an alias
for :func:`cast`.")
- def between(self, lowerBound, upperBound):
+ def between(
+ self,
+ lowerBound: Union["Column", "LiteralType", "DecimalLiteral",
"DecimalLiteral"],
+ upperBound: Union["Column", "LiteralType", "DecimalLiteral",
"DecimalLiteral"],
Review comment:
Nit. `DecimalLiteral` is repeated twice.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]