shahar1 commented on code in PR #44890:
URL: https://github.com/apache/airflow/pull/44890#discussion_r1885374960
##########
providers/src/airflow/providers/google/cloud/hooks/dataproc.py:
##########
@@ -118,11 +118,11 @@ def add_args(self, args: list[str] | None = None) -> None:
def add_query(self, query: str) -> None:
Review Comment:
Don't you want maybe to allow a list of queries (`query: str | list[str]`)?
it will be nicer to handle rather than repeating:
```python
hook.add_query("query1")
hook.add_query("query2")
.
.
.
```
Also, could you please merge/rebase `main`?
--
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]