aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/compatibility
diff options
context:
space:
mode:
authorGravatar Yifei Feng <yifeif@google.com>2018-02-12 10:49:56 -0800
committerGravatar Yifei Feng <yifeif@google.com>2018-02-12 10:49:56 -0800
commit55747c5588045b0a06dc6446a00a189568679dea (patch)
tree11f3465adae6c44a44b890e9a8135566fafe42a1 /tensorflow/tools/compatibility
parent3ee1721b46d0e61097d0ee72f01e3de9739f0b6f (diff)
parenta55c133748b695778163035f098cf3ac34302872 (diff)
Merge commit for internal changes
Diffstat (limited to 'tensorflow/tools/compatibility')
-rw-r--r--tensorflow/tools/compatibility/tf_upgrade_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/tools/compatibility/tf_upgrade_test.py b/tensorflow/tools/compatibility/tf_upgrade_test.py
index a495f9883b..3d02eacba6 100644
--- a/tensorflow/tools/compatibility/tf_upgrade_test.py
+++ b/tensorflow/tools/compatibility/tf_upgrade_test.py
@@ -114,7 +114,7 @@ class TestUpgrade(test_util.TensorFlowTestCase):
self.assertEqual(errors, ["test.py:1: tf.reverse requires manual check."])
def testListComprehension(self):
- def _test(input, output):
+ def _test(input, output): # pylint: disable=redefined-builtin
_, unused_report, errors, new_text = self._upgrade(input)
self.assertEqual(new_text, output)
_test("tf.concat(0, \t[x for x in y])\n",