You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by di...@apache.org on 2020/06/20 03:02:46 UTC

[airflow] 04/04: flake8 tests

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

dimberman pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit f2ee8e868ff969860d3ba5c47f4f1c04808543ca
Author: Daniel Imberman <da...@astronomer.io>
AuthorDate: Fri Jun 19 20:01:25 2020 -0700

    flake8 tests
---
 airflow/operators/sql.py | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/airflow/operators/sql.py b/airflow/operators/sql.py
index 91ddc1a..83cb201 100644
--- a/airflow/operators/sql.py
+++ b/airflow/operators/sql.py
@@ -154,14 +154,14 @@ class SQLValueCheckOperator(BaseOperator):
 
     @apply_defaults
     def __init__(
-            self,
-            sql,
-            pass_value,
-            tolerance=None,
-            conn_id=None,
-            *args,
-            **kwargs
-            ):
+        self,
+        sql,
+        pass_value,
+        tolerance=None,
+        conn_id=None,
+        *args,
+        **kwargs
+    ):
         super(SQLValueCheckOperator, self).__init__(*args, **kwargs)
         self.sql = sql
         self.conn_id = conn_id