gaogaotiantian commented on code in PR #54430: URL: https://github.com/apache/spark/pull/54430#discussion_r2843198756
########## python/pyspark/testing/pandasutils.py: ########## Review Comment: My concern is that you did a `for name, col in obj.items()` above. The data in that list comprehension is the `name`. But later on you used the name `col` to iterate the list. It's a bit confusing because two variables in two list iterations actually point to different things. -- 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]
