jedcunningham commented on PR #30442:
URL: https://github.com/apache/airflow/pull/30442#issuecomment-1536359553
I'd prefer we don't do this actually, and instead consider this:
```python
@setup
def whatever():
...
```
to simply be a shortcut for:
```python
@setup
@task
def whatever():
...
```
And if you wanted to provide any kwargs to task, that you have to use both
`@setup` and `@task` together.
--
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]