Repository: incubator-airflow
Updated Branches:
  refs/heads/master 2a5883793 -> 48c9df35b


[AIRFLOW-801] Remove outdated docstring on BaseOperator

The docstring of the BaseOperator still makes
reference to
it inheriting from SQL Alchemy's Base class,
which it no longer does. So that should be
removed.

Closes #2373 from sekikn/AIRFLOW-801


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/48c9df35
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/48c9df35
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/48c9df35

Branch: refs/heads/master
Commit: 48c9df35bb2f3d9a6743ee5eaeb689960d534fbe
Parents: 2a58837
Author: Kengo Seki <sek...@apache.org>
Authored: Fri Jun 23 14:51:08 2017 -0700
Committer: Alex Guziel <alex.guz...@airbnb.com>
Committed: Fri Jun 23 14:51:08 2017 -0700

----------------------------------------------------------------------
 airflow/models.py | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/48c9df35/airflow/models.py
----------------------------------------------------------------------
diff --git a/airflow/models.py b/airflow/models.py
index 0002572..41ad9f8 100755
--- a/airflow/models.py
+++ b/airflow/models.py
@@ -1864,12 +1864,6 @@ class BaseOperator(object):
     which ultimately becomes a node in DAG objects. Task dependencies should
     be set by using the set_upstream and/or set_downstream methods.
 
-    Note that this class is derived from SQLAlchemy's Base class, which
-    allows us to push metadata regarding tasks to the database. Deriving this
-    classes needs to implement the polymorphic specificities documented in
-    SQLAlchemy. This should become clear while reading the code for other
-    operators.
-
     :param task_id: a unique, meaningful id for the task
     :type task_id: string
     :param owner: the owner of the task, using the unix username is recommended

Reply via email to