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
The following commit(s) were added to refs/heads/v1-10-test by this push:
new 4d8c4e2 remove core_to_contrib
4d8c4e2 is described below
commit 4d8c4e24c24bcccb30bcc7a037d7136493d63bd7
Author: Daniel Imberman <[email protected]>
AuthorDate: Fri Jun 19 19:52:55 2020 -0700
remove core_to_contrib
---
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 5c10488..91ddc1a 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