ashb commented on code in PR #48949:
URL: https://github.com/apache/airflow/pull/48949#discussion_r2035133401
##########
airflow-core/src/airflow/dag_processing/processor.py:
##########
@@ -269,30 +269,33 @@ def client(self) -> Client:
def _handle_request(self, msg: ToManager, log: FilteringBoundLogger) ->
None: # type: ignore[override]
from airflow.sdk.api.datamodels._generated import ConnectionResponse,
VariableResponse
- resp = None
+ resp: Any = None
Review Comment:
or
```suggestion
resp: BaseModel | None = None
```
--
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]