Skip to content

Commit

Permalink
Some more missed format unification
Browse files Browse the repository at this point in the history
  • Loading branch information
uranusjr authored and potiuk committed Sep 9, 2022
1 parent b358c2b commit d35290f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/providers/mysql/hooks/mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def get_conn(self) -> MySQLConnectionTypes:
raise ValueError('Unknown MySQL client name provided!')

def bulk_load(self, table: str, tmp_file: str) -> None:
"""Loads a tab-delimited file into a database table."""
"""Load a tab-delimited file into a database table."""
conn = self.get_conn()
cur = conn.cursor()
cur.execute(
Expand All @@ -193,7 +193,7 @@ def bulk_load(self, table: str, tmp_file: str) -> None:
conn.close()

def bulk_dump(self, table: str, tmp_file: str) -> None:
"""Dumps a database table into a tab-delimited file."""
"""Dump a database table into a tab-delimited file."""
conn = self.get_conn()
cur = conn.cursor()
cur.execute(
Expand Down

0 comments on commit d35290f

Please sign in to comment.