This is an automated email from the ASF dual-hosted git repository.
kaxilnaik 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 e7eeaa6 Doc: Fix docstrings for ``MongoToS3Operator`` (#17588)
e7eeaa6 is described below
commit e7eeaa60861f523a03a64de9dae1784cfa8b21a4
Author: Kaxil Naik <[email protected]>
AuthorDate: Thu Aug 12 22:29:28 2021 +0100
Doc: Fix docstrings for ``MongoToS3Operator`` (#17588)
The doc was missing closing parentheses and had markdown formatted in-line
code-block instead of rst one
---
airflow/providers/amazon/aws/transfers/mongo_to_s3.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow/providers/amazon/aws/transfers/mongo_to_s3.py
b/airflow/providers/amazon/aws/transfers/mongo_to_s3.py
index d5a39d0..0251a82 100644
--- a/airflow/providers/amazon/aws/transfers/mongo_to_s3.py
+++ b/airflow/providers/amazon/aws/transfers/mongo_to_s3.py
@@ -43,7 +43,7 @@ class MongoToS3Operator(BaseOperator):
:type mongo_query: Union[list, dict]
:param mongo_projection: optional parameter to filter the returned fields
by
the query. It can be a list of fields names to include or a dictionary
- for excluding fields (e.g `projection={"_id": 0}`
+ for excluding fields (e.g ``projection={"_id": 0}`` )
:type mongo_projection: Union[list, dict]
:param s3_bucket: reference to a specific S3 bucket to store the data
:type s3_bucket: str