From e5fe4ccdf9916eb2330c376f20f001e2da403ddc Mon Sep 17 00:00:00 2001 From: Vasileios Lioutas Date: Wed, 19 Jun 2019 21:27:51 -0400 Subject: [PATCH] fix hanging indentation --- .../python/kernel_tests/extract_image_patches_grad_test.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tensorflow/python/kernel_tests/extract_image_patches_grad_test.py b/tensorflow/python/kernel_tests/extract_image_patches_grad_test.py index ebee740f6f5..a394467b105 100644 --- a/tensorflow/python/kernel_tests/extract_image_patches_grad_test.py +++ b/tensorflow/python/kernel_tests/extract_image_patches_grad_test.py @@ -136,9 +136,7 @@ class ExtractImagePatchesGradTest(test.TestCase): in_shape = test_case['in_shape'] test_shape = [x if x is None else y for x, y in zip(test_shape_pattern, in_shape)] - in_val = array_ops.placeholder( - shape=test_shape, - dtype=dtypes.float32) + in_val = array_ops.placeholder(shape=test_shape, dtype=dtypes.float32) feed_dict = {in_val: np.random.random(in_shape)} for padding in ['VALID', 'SAME']: