Taragolis commented on issue #39413:
URL: https://github.com/apache/airflow/issues/39413#issuecomment-2095836354
My 2 cents, this code use internals methods, as result it is expected that
this approach could be broken on changes in airflow codebase
```python
def deco(cls):
orig_init = cls.__init__
def new_init(self, *args, default_args=None, **kwargs):
orig_init(self, *args, **kwargs)
self.default_args = default_args
cls.__init__ = cls._apply_defaults(new_init)
return cls
```
--
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]