swainmoc commented on code in PR #54105:
URL: https://github.com/apache/airflow/pull/54105#discussion_r2266473316


##########
providers/google/src/airflow/providers/google/cloud/operators/dataproc.py:
##########
@@ -226,6 +227,7 @@ def __init__(
         internal_ip_only: bool | None = None,
         tags: list[str] | None = None,
         storage_bucket: str | None = None,
+        cluster_tier: str | None = None,

Review Comment:
   Ok got it, I didn't know about keyword-only arguments.
   
   By keyword-only arguments you mean I have to write the method like:
   
   ```
   def keyword_only_function(parameters, *, cluster_tier=None):
       pass
   ```



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