Skip to content

Commit c5e3020

Browse files
authored
Fix typo in DataprocCreateClusterOperator (#15462)
Fix typo in DataprocCreateClusterOperator `param` was accidentally written as `parm`
1 parent 42f6b67 commit c5e3020

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airflow/providers/google/cloud/operators/dataproc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,10 +438,10 @@ class DataprocCreateClusterOperator(BaseOperator):
438438
:type cluster_config: Union[Dict, google.cloud.dataproc_v1.types.ClusterConfig]
439439
:param region: The specified region where the dataproc cluster is created.
440440
:type region: str
441-
:parm delete_on_error: If true the cluster will be deleted if created with ERROR state. Default
441+
:param delete_on_error: If true the cluster will be deleted if created with ERROR state. Default
442442
value is true.
443443
:type delete_on_error: bool
444-
:parm use_if_exists: If true use existing cluster
444+
:param use_if_exists: If true use existing cluster
445445
:type use_if_exists: bool
446446
:param request_id: Optional. A unique id used to identify the request. If the server receives two
447447
``DeleteClusterRequest`` requests with the same id, then the second request will be ignored and the

0 commit comments

Comments
 (0)