Skip to content

Commit 119c7b0

Browse files
committed
fix pylint
1 parent 8c7ee10 commit 119c7b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ def test_split(self):
848848
def test_split_with_more_outputs(self):
849849
x_val = np.linspace(1.0, 5 * 30.0, 5 * 30).astype(np.float32).reshape(5, 30)
850850
x0 = tf.placeholder(tf.float32, x_val.shape, name=_TFINPUT)
851-
x_, y, z = tf.split(x0, [4, 15, 11], 1, name="split_test")
851+
_, _, _ = tf.split(x0, [4, 15, 11], 1, name="split_test")
852852
self._run_test_case(["split_test:0", "split_test:1", "split_test:2"], {_INPUT: x_val})
853853

854854
def test_reducesum(self):

0 commit comments

Comments
 (0)