Skip to content

Commit d2614dc

Browse files
committed
[FLINK-38594][python] stop false positive unused import causing error in CI
Signed-off-by: davidradl <[email protected]>
1 parent 9b21a97 commit d2614dc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

flink-python/pyflink/table/tests/test_udf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
import unittest
2121
import uuid
2222

23-
import pytz
23+
# false positive Error in Flake8.
24+
import pytz # noqa: F401
2425

2526
from pyflink.common import Row
2627
from pyflink.table import DataTypes, expressions as expr

0 commit comments

Comments
 (0)