From 9319da22772b62e3e914bbdbada7a4a5d106c636 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Mon, 6 Apr 2020 23:59:44 +0000 Subject: [PATCH] Pylint fix Signed-off-by: Yong Tang --- tensorflow/python/kernel_tests/cwise_ops_binary_test.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tensorflow/python/kernel_tests/cwise_ops_binary_test.py b/tensorflow/python/kernel_tests/cwise_ops_binary_test.py index 1f4b570027f..67fc8519323 100644 --- a/tensorflow/python/kernel_tests/cwise_ops_binary_test.py +++ b/tensorflow/python/kernel_tests/cwise_ops_binary_test.py @@ -949,7 +949,11 @@ class ComparisonOpTest(test.TestCase): f(x.astype(t), y.astype(t)) def testEqualDType(self): - dtypes = [np.float16, np.float32, np.float64, np.int8, np.int16, np.int32, np.int64, np.uint8, np.uint16, np.uint32, np.uint64] + dtypes = [ + np.float16, np.float32, np.float64, + np.int8, np.int16, np.int32, np.int64, + np.uint8, np.uint16, np.uint32, np.uint64, + ] x = np.asarray([0, 1, 2, 3, 4]) y = np.asarray([0, 1, 2, 3, 4]) for dtype in dtypes: