vikmary commented on issue #47104: URL: https://github.com/apache/airflow/issues/47104#issuecomment-2685406529
`{}` and `None` are not the same. So in case of no overriding I would expect
```
params={
"object_param": Param(None, type=["null", "object"],
description="Object field"),
},
```
to result in `object_param` equaling `None` and
```
params={
"object_param": Param({}, type=["null", "object"],
description="Object field"),
},
```
or
``` params={
"object_param": Param({}, type="object", description="Object
field"),
},
```
to result in `object_param` equaling empty dictionary `{}`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
