tvalentyn commented on code in PR #35547: URL: https://github.com/apache/beam/pull/35547#discussion_r2205446434
########## sdks/python/apache_beam/transforms/ptransform.py: ########## @@ -1027,11 +1027,18 @@ def expand(self, pcoll): pass return self._fn(pcoll, *args, **kwargs) - def default_label(self): + def default_label(self) -> str: + # Attempt to give a reasonable name to this transform. + # We want it to be reasonably unique, but also not to sensitive to Review Comment: ```suggestion # We want it to be reasonably unique, but also not to be sensitive to ``` -- 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: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org