usecases/image-processing/dags/1.10/image_processing.py [165:177]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    dag=dag,
)

# [START howto_operator_bash]
photo_not_meet_requirement = BashOperator(
    task_id='photo_not_meet_requirement',
    bash_command='echo photo_not_meet_requirement',
    dag=dag,
)
check_duplicate = BranchPythonOperator(
    task_id='check_duplicate',
    python_callable=check_duplicate,
    provide_context=True,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



usecases/image-processing/dags/2.0/image_processing.py [164:176]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    dag=dag,
)

# [START howto_operator_bash]
photo_not_meet_requirement = BashOperator(
    task_id='photo_not_meet_requirement',
    bash_command='echo photo_not_meet_requirement',
    dag=dag,
)
check_duplicate = BranchPythonOperator(
    task_id='check_duplicate',
    python_callable=check_duplicate,
    provide_context=True,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



