robertwb commented on code in PR #32850:
URL: https://github.com/apache/beam/pull/32850#discussion_r1805535849
##########
sdks/python/apache_beam/pvalue.py:
##########
@@ -682,7 +682,8 @@ def __eq__(self, other):
type(self) == type(other) and
len(self.__dict__) == len(other.__dict__) and all(
s == o for s,
- o in zip(self.__dict__.items(), other.__dict__.items())))
+ o in zip(
Review Comment:
Write `for (s, o) in zip(...)` for better line breaks.
--
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]