From 4ea10c4bcc1ca3d98e34c6742220c2c8fe9df946 Mon Sep 17 00:00:00 2001 From: Duncan Riach Date: Fri, 10 Jan 2020 07:53:53 -0800 Subject: [PATCH] Fix Ubuntu Sanity CI fail due to pylint error --- tensorflow/python/kernel_tests/bias_op_deterministic_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/kernel_tests/bias_op_deterministic_test.py b/tensorflow/python/kernel_tests/bias_op_deterministic_test.py index 38b02d1c56f..d025932b671 100644 --- a/tensorflow/python/kernel_tests/bias_op_deterministic_test.py +++ b/tensorflow/python/kernel_tests/bias_op_deterministic_test.py @@ -83,7 +83,7 @@ class BiasAddDeterministicTest(bias_op_base.BiasAddTestBase, # the iteration loops for the parameter combinations, and so was re-used. seed = ( hash(data_layout) % 256 + hash(data_rank) % 256 + hash(data_type) % - 256) + 256) np.random.seed(seed) batch_size = 10 channel_count = 8