potiuk commented on code in PR #31298: URL: https://github.com/apache/airflow/pull/31298#discussion_r1194362786
########## airflow/providers/cncf/kubernetes/utils/pod_manager.py: ########## @@ -24,7 +24,7 @@ from contextlib import closing, suppress from dataclasses import dataclass from datetime import datetime, timedelta -from typing import TYPE_CHECKING, Generator, cast +from typing import TYPE_CHECKING, Generator, Protocol, cast Review Comment: Small problem - until end of June, Protocol needs to be imported as: ``` from airflow.typing_compat import Protocol ``` -- 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]
