From ed8e001ab0032bd921bc7a0323ed57332da7a2c3 Mon Sep 17 00:00:00 2001 From: davidradl Date: Tue, 4 Nov 2025 11:31:10 +0000 Subject: [PATCH 1/2] [FLINK-38594][python] ignore false positive error Signed-off-by: davidradl --- flink-python/pyflink/table/tests/test_udf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flink-python/pyflink/table/tests/test_udf.py b/flink-python/pyflink/table/tests/test_udf.py index 4667702bbbdff..1df353ce071cb 100644 --- a/flink-python/pyflink/table/tests/test_udf.py +++ b/flink-python/pyflink/table/tests/test_udf.py @@ -20,7 +20,8 @@ import unittest import uuid -import pytz +# ignore false positive imported but unused +import pytz # noqa: F401 from pyflink.common import Row from pyflink.table import DataTypes, expressions as expr From c339ba27784c527b3433b4996ddf1257b74bfe80 Mon Sep 17 00:00:00 2001 From: davidradl Date: Tue, 4 Nov 2025 15:05:27 +0000 Subject: [PATCH 2/2] [FLINK-38594][python] inline the comment on reviewers request Signed-off-by: davidradl --- flink-python/pyflink/table/tests/test_udf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flink-python/pyflink/table/tests/test_udf.py b/flink-python/pyflink/table/tests/test_udf.py index 1df353ce071cb..691da8bdbf282 100644 --- a/flink-python/pyflink/table/tests/test_udf.py +++ b/flink-python/pyflink/table/tests/test_udf.py @@ -20,8 +20,7 @@ import unittest import uuid -# ignore false positive imported but unused -import pytz # noqa: F401 +import pytz # noqa: F401 # ignore imported but unused from pyflink.common import Row from pyflink.table import DataTypes, expressions as expr