uranusjr commented on code in PR #25268:
URL: https://github.com/apache/airflow/pull/25268#discussion_r956916011


##########
airflow/providers/mysql/hooks/mysql.py:
##########
@@ -187,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"""
+        """Dumps a database table into a tab-delimited file."""

Review Comment:
   ```suggestion
           """Dump a database table into a tab-delimited file."""
   ```



##########
airflow/providers/mysql/hooks/mysql.py:
##########
@@ -174,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"""
+        """Loads a tab-delimited file into a database table."""

Review Comment:
   ```suggestion
           """Load a tab-delimited file into a database table."""
   ```



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