Skip to content

Commit

Permalink
fixed typo (#8294)
Browse files Browse the repository at this point in the history
  • Loading branch information
michalslowikowski00 committed Apr 14, 2020
1 parent 25f435b commit 8cae07e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/providers/google/cloud/operators/presto_to_gcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
"""
Expand Down

0 comments on commit 8cae07e

Please sign in to comment.