[GitHub] [airflow] jedcunningham commented on a change in pull request #19034: Fix ``None`` default Param; refactor Param default handling

2021-10-18 Thread GitBox
jedcunningham commented on a change in pull request #19034: URL: https://github.com/apache/airflow/pull/19034#discussion_r731268063 ## File path: airflow/models/param.py ## @@ -38,37 +48,44 @@ class Param: :type schema: dict """ -def __init__(self, default: Any

[GitHub] [airflow] jedcunningham commented on a change in pull request #19034: Fix ``None`` default Param; refactor Param default handling

2021-10-17 Thread GitBox
jedcunningham commented on a change in pull request #19034: URL: https://github.com/apache/airflow/pull/19034#discussion_r730426761 ## File path: airflow/models/param.py ## @@ -24,6 +24,16 @@ from airflow.exceptions import AirflowException +class NoValueSentinel: Review c