kaxil commented on code in PR #67164:
URL: https://github.com/apache/airflow/pull/67164#discussion_r3277930082


##########
task-sdk/src/airflow/sdk/definitions/partition_mappers/temporal.py:
##########
@@ -16,17 +16,27 @@
 # under the License.
 from __future__ import annotations
 
+from typing import TYPE_CHECKING
+
 from airflow.sdk.definitions.partition_mappers.base import PartitionMapper
 
+if TYPE_CHECKING:
+    from pendulum import FixedTimezone, Timezone
+
 
 class _BaseTemporalMapper(PartitionMapper):
+    """Base class for Temporal Partition Mappers."""
+
     default_output_format: str
 
     def __init__(
         self,
+        *,

Review Comment:
   3.3.0 -- don't think we are planning 3.2.3 anymore since we are in process 
of 3.2.2 release and 3.3.0 is next month



-- 
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]

Reply via email to