Remove unnecessary pylint disable

PiperOrigin-RevId: 158416140
This commit is contained in:
Shanqing Cai 2017-06-08 11:07:24 -07:00 committed by TensorFlower Gardener
parent 2f53cacb2b
commit ddbb58034d

View File

@ -53,7 +53,7 @@ from tensorflow.python.platform import test
from tensorflow.python.training import gradient_descent
class _RNNCellForTest(rnn_cell_impl.RNNCell): # pylint: disable=protected-access
class _RNNCellForTest(rnn_cell_impl.RNNCell):
"""RNN cell for testing."""
def __init__(self, input_output_size, state_size):