The GitHub Actions job "Tests AMD" on 
airflow.git/LazyDerserDag-fix-nullable-props has succeeded.
Run started by GitHub user ashb (triggered by ashb).

Head commit for run:
3b73aac693d7b97fc64ad6adf642d484be47de86 / Ash Berlin-Taylor <[email protected]>
Update the list of nullable properties on LazyDeserializedDAG

A quick not-perfect code snippet that generated this list:

```python
import operator

import attrs

from airflow.sdk import DAG

default_qual_name = 
operator.attrgetter("default.factory.func.__func__.__qualname__")

def is_conf_default(fld):
    try:
        return default_qual_name(fld).startswith("AirflowConfigParser.get")
    except Exception:
        return None

[field.name for field in attrs.fields(airflow.sdk.DAG) if "None" in field.type 
or is_conf_default(field)]
```

This snippet is not perfect, it's just a starting point, which is why it isn't
yet turned in to a pre-commit check

Report URL: https://github.com/apache/airflow/actions/runs/17828665745

With regards,
GitHub Actions via GitBox


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to