Github user davies commented on a diff in the pull request:
https://github.com/apache/spark/pull/5558#discussion_r28625392
--- Diff: python/pyspark/sql/dataframe.py ---
@@ -519,7 +520,7 @@ def sort(self, *cols, **kwargs):
jcols = [jc if asc else jc.desc()
for asc, jc in zip(ascending, jcols)]
else:
- raise TypeError("ascending can only be bool or list, but got
%s" % type(ascending))
+ raise TypeError("ascending can only be boolean or list, but
got %s" % type(ascending))
--- End diff --
Could you also change the tests in doc string to use `True` and `False`
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]