amoghrajesh commented on code in PR #53870: URL: https://github.com/apache/airflow/pull/53870#discussion_r2282591932
########## task-sdk/src/airflow/sdk/definitions/connection.py: ########## @@ -160,6 +203,14 @@ def get(cls, conn_id: str) -> Any: @property def extra_dejson(self) -> dict: """Deserialize `extra` property to JSON.""" + return self.get_extra_dejson() + + def get_extra_dejson(self, nested: bool = False) -> dict: Review Comment: It isn't used anywhere but its referenced in this comment: https://github.com/apache/airflow/blob/main/providers/microsoft/azure/src/airflow/providers/microsoft/azure/hooks/msgraph.py#L327-L330, so i am in double minds if we need to add it or not. WDYT? I am ok chopping it off since its unused. -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org