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/03/06 08:07:21 UTC

[airflow] branch main updated: Resolve mypy issue in athena example dag (#22020)

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 <15...@users.noreply.github.com>
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