[ 
https://issues.apache.org/jira/browse/AIRFLOW-6888?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17042917#comment-17042917
 ] 

ASF GitHub Bot commented on AIRFLOW-6888:
-----------------------------------------

kaxil commented on pull request #7511: [AIRFLOW-6888] Replace List creation in 
experimental/trigger_dag.py
URL: https://github.com/apache/airflow/pull/7511
 
 
   
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


> Replace List creation in experimental/trigger_dag.py
> ----------------------------------------------------
>
>                 Key: AIRFLOW-6888
>                 URL: https://issues.apache.org/jira/browse/AIRFLOW-6888
>             Project: Apache Airflow
>          Issue Type: Improvement
>          Components: api
>    Affects Versions: 2.0.0
>            Reporter: Kaxil Naik
>            Assignee: Kaxil Naik
>            Priority: Minor
>
> List creation and assignment can be combined to a single command:
> *Before*:
> {noformat}
> dags_to_trigger = []
> dags_to_trigger.append(dag)
> {noformat}
> *After*:
> {noformat}
> dags_to_trigger = [dag]
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to