GaetanLepage commented on PR #36251:
URL: https://github.com/apache/beam/pull/36251#issuecomment-3325334718

   After applying #36238 and this one, I get:
   ```
         self.side_inputs = (
             tuple() if transform is None else getattr(
                 transform, 'side_inputs', tuple()))
         self.outputs = {}  # type: Dict[Union[str, int, None], pvalue.PValue]
         self.parts = []  # type: List[AppliedPTransform]
         self.environment_id = environment_id if environment_id else None  # 
type: Optional[str]
         # We may need to merge the hints with environment-provided hints here
         # once environment is a first-class citizen in Beam graph and we have
         # access to actual environment, not just an id.
         self.resource_hints = dict(
             transform.get_resource_hints()) if transform and hasattr(
                 transform, 'get_resource_hints') else {}  # type: Dict[str, 
bytes]
   
         if transform:
           annotations = {
   >           **(annotations or {}), 
**encode_annotations(transform.annotations())
                                                           ^^^^^^^^^^^^^^^^^^^^^
           }
   E       AttributeError: 'MaybeReshuffle' object has no attribute 
'annotations'
   
   apache_beam/pipeline.py:1244: AttributeError
   ```


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