diff --git a/airflow/providers/google/cloud/operators/presto_to_gcs.py b/airflow/providers/google/cloud/operators/presto_to_gcs.py index 8936ccab183e1..49c931c45a4a4 100644 --- a/airflow/providers/google/cloud/operators/presto_to_gcs.py +++ b/airflow/providers/google/cloud/operators/presto_to_gcs.py @@ -76,11 +76,11 @@ def close(self) -> None: """Close the cursor now""" self.cursor.close() - def execute(self, *args, **kwwargs): + def execute(self, *args, **kwargs): """Prepare and execute a database operation (query or command).""" self.initialized = False self.rows = [] - return self.cursor.execute(*args, **kwwargs) + return self.cursor.execute(*args, **kwargs) def executemany(self, *args, **kwargs): """