Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrejeambrun committed Sep 20, 2024
1 parent d25f3e0 commit 01a5653
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions airflow/models/dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -3419,6 +3419,11 @@ def dag_display_name(self) -> str:

@dag_display_name.expression
def dag_display_name(cls) -> str:
"""
Expression part of the hybrid property ``dag_display_name``.
:meta private:
"""
return case(
(cls._dag_display_property_value.is_not(None), cls._dag_display_property_value),
else_=cls.dag_id,
Expand Down

0 comments on commit 01a5653

Please sign in to comment.