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 a9b7dd6  Resolve mypy issue in athena example dag (#22020)
a9b7dd6 is described below

commit a9b7dd69008710f1e5b188e4f8bc2d09a5136776
Author: Daniel Standish <[email protected]>
AuthorDate: Sun Mar 6 00:06:09 2022 -0800

    Resolve mypy issue in athena example dag (#22020)
    
    * Resolve mypy issue in athena example dag
    
    * fixup! Resolve mypy issue in athena example dag
---
 airflow/providers/amazon/aws/example_dags/example_athena.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/providers/amazon/aws/example_dags/example_athena.py 
b/airflow/providers/amazon/aws/example_dags/example_athena.py
index 80d30c2..925d359 100644
--- a/airflow/providers/amazon/aws/example_dags/example_athena.py
+++ b/airflow/providers/amazon/aws/example_dags/example_athena.py
@@ -132,7 +132,7 @@ with DAG(
     remove_sample_data_from_s3 = remove_sample_data_from_s3()
 
     (
-        add_sample_data_to_s3
+        add_sample_data_to_s3  # type: ignore
         >> create_table
         >> read_table
         >> get_read_state

Reply via email to