Skip to content

Commit

Permalink
Fix static check failure
Browse files Browse the repository at this point in the history
  • Loading branch information
xionams committed Feb 22, 2024
1 parent 0f90e45 commit 9fc6de6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion airflow/example_dags/example_branch_operator_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ def branching_ext_python(choices) -> str:

join >> random_choice_ext_py

join_ext_py = EmptyOperator(task_id="join_ext_py", trigger_rule=TriggerRule.NONE_FAILED_MIN_ONE_SUCCESS)
join_ext_py = EmptyOperator(
task_id="join_ext_py", trigger_rule=TriggerRule.NONE_FAILED_MIN_ONE_SUCCESS
)

for option in options:

Expand Down
1 change: 1 addition & 0 deletions dev/PROJECT_GUIDELINES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->


- [Adding a Committer or PMC Member](#adding-a-committer-or-pmc-member)
- [Airflow Improvement Proposals (AIPs)](#airflow-improvement-proposals-aips)
- [Support for Airflow 1.10.x releases](#support-for-airflow-110x-releases)
Expand Down
1 change: 1 addition & 0 deletions tests/system/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->


- [How to run system tests](#how-to-run-system-tests)
- [Running via Airflow](#running-via-airflow)
- [Running via Pytest](#running-via-pytest)
Expand Down

0 comments on commit 9fc6de6

Please sign in to comment.