You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by el...@apache.org on 2022/04/23 16:11:14 UTC

[airflow] branch main updated: `S3Hook`: fix `load_bytes` docstring (#23182)

This is an automated email from the ASF dual-hosted git repository.

eladkal pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new d91b6cd40f `S3Hook`: fix `load_bytes` docstring (#23182)
d91b6cd40f is described below

commit d91b6cd40fbc898fd60e3de252148b56cd0e175d
Author: Jason Washburn <35...@users.noreply.github.com>
AuthorDate: Sat Apr 23 11:11:04 2022 -0500

    `S3Hook`: fix `load_bytes` docstring (#23182)
---
 airflow/providers/amazon/aws/hooks/s3.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/providers/amazon/aws/hooks/s3.py b/airflow/providers/amazon/aws/hooks/s3.py
index 38416b4e89..029c72cbb8 100644
--- a/airflow/providers/amazon/aws/hooks/s3.py
+++ b/airflow/providers/amazon/aws/hooks/s3.py
@@ -649,7 +649,7 @@ class S3Hook(AwsBaseHook):
         """
         Loads bytes to S3
 
-        This is provided as a convenience to drop a string in S3. It uses the
+        This is provided as a convenience to drop bytes data into S3. It uses the
         boto infrastructure to ship a file to s3.
 
         :param bytes_data: bytes to set as content for the key.