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

potiuk 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 e1a14ae9ee Fix false-positive spellcheck failure (#29190)
e1a14ae9ee is described below

commit e1a14ae9ee6ba819763776156a49e9df3fe80ee9
Author: Andrey Anshin <andrey.ans...@taragol.is>
AuthorDate: Fri Jan 27 11:43:31 2023 +0400

    Fix false-positive spellcheck failure (#29190)
---
 airflow/providers/amazon/aws/utils/tags.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/providers/amazon/aws/utils/tags.py 
b/airflow/providers/amazon/aws/utils/tags.py
index c8afb124b6..f84f275735 100644
--- a/airflow/providers/amazon/aws/utils/tags.py
+++ b/airflow/providers/amazon/aws/utils/tags.py
@@ -24,7 +24,7 @@ def format_tags(source: Any, *, key_label: str = "Key", 
value_label: str = "Valu
     If given a dictionary, formats it as an array of objects with a key and a 
value field to be passed to boto
     calls that expect this format.
     Else, assumes that it's already in the right format and returns it as is. 
We do not validate
-    the format here since it's done by boto anyway, and the error wouldn't be 
clearer if thrown from here.
+    the format here since it's done by boto anyway, and the error would not be 
clearer if thrown from here.
 
     :param source: a dict from which keys and values are read
     :param key_label: optional, the label to use for keys if not "Key"

Reply via email to