You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/08/04 09:33:46 UTC

[airflow] branch main updated: doc: fixed docstring for sql param in Neo4jOperator (#17407)

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

potiuk 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 a10eb61  doc: fixed docstring for sql param in Neo4jOperator (#17407)
a10eb61 is described below

commit a10eb61c19dc773b933a957bf30f4aec4294ca54
Author: Yury Krylov <sh...@gmail.com>
AuthorDate: Wed Aug 4 12:33:24 2021 +0300

    doc: fixed docstring for sql param in Neo4jOperator (#17407)
---
 airflow/providers/neo4j/operators/neo4j.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/airflow/providers/neo4j/operators/neo4j.py b/airflow/providers/neo4j/operators/neo4j.py
index 5a14e46..c3c3a1d 100644
--- a/airflow/providers/neo4j/operators/neo4j.py
+++ b/airflow/providers/neo4j/operators/neo4j.py
@@ -30,8 +30,8 @@ class Neo4jOperator(BaseOperator):
         :ref:`howto/operator:Neo4jOperator`
 
     :param sql: the sql code to be executed. Can receive a str representing a
-        sql statement, a list of str (sql statements)
-    :type sql: str or list[str]
+        sql statement
+    :type sql: str
     :param neo4j_conn_id: Reference to :ref:`Neo4j connection id <howto/connection:neo4j>`.
     :type neo4j_conn_id: str
     """