Fix pylint `Line too long (102/80)`
authorYong Tang <yong.tang.github@outlook.com>
Wed, 18 Apr 2018 19:41:46 +0000 (19:41 +0000)
committerYong Tang <yong.tang.github@outlook.com>
Wed, 18 Apr 2018 20:06:28 +0000 (20:06 +0000)
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
tensorflow/contrib/cudnn_rnn/python/layers/cudnn_rnn.py

index 1b86148..d58198f 100644 (file)
@@ -358,7 +358,8 @@ class _CudnnRNN(base_layer.Layer):
             "CUDA/CuDNN generations.")
       # Initialize opaque params with a tensor.
       self.kernel = vs.get_variable(
-          "opaque_kernel", dtype=self._plain_dtype, initializer=opaque_params_t, validate_shape=False)
+          "opaque_kernel", dtype=self._plain_dtype,
+          initializer=opaque_params_t, validate_shape=False)
     # Create saveable in the outer scope of the cudnn subgraph, such that
     # alternative subgraph with platform-independent rnn cells can load the
     # checkpoints directly.