DaanHoogland commented on pull request #4479:
URL: https://github.com/apache/cloudstack/pull/4479#issuecomment-734393026


   the attr decorator is removed so we need to implement it somewhere in marvi:
   ```
   def attr(*args, **kwargs):
       """Decorator that adds attributes to classes or functions
       for use with the Attribute (-a) plugin.
       """
       def wrap_ob(ob):
           for name in args:
               setattr(ob, name, True)
           for name, value in kwargs.items():
               setattr(ob, name, value)
           return ob
       return wrap_ob
   
   ```


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

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to