jrmccluskey commented on code in PR #27536:
URL: https://github.com/apache/beam/pull/27536#discussion_r1268357233


##########
sdks/python/apache_beam/runners/worker/operations.py:
##########
@@ -812,7 +812,7 @@ def __init__(self,
 
     # See fn_data in dataflow_runner.py
     # TODO: Store all the items from spec?
-    self.fn, _, _, _, _ = (pickler.loads(self.spec.serialized_fn))
+    self.fn, _, _, _, _ = pickler.loads(self.spec.serialized_fn)

Review Comment:
   Ah that was a linting-related change. Cython didn't flag that line, the 
closure was the only code that cython was explicitly unhappy with



-- 
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]

Reply via email to