From afe6471e8e3d0dd9449dc26f80a2aa12158c2a8e Mon Sep 17 00:00:00 2001 From: Yoav Ramon Date: Thu, 15 Oct 2020 09:21:41 +0300 Subject: [PATCH] solve pylint line too long Solved line 96 being too long by pylint --- tensorflow/python/keras/layers/wrappers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/python/keras/layers/wrappers.py b/tensorflow/python/keras/layers/wrappers.py index 693b0c37aa3..c2accf24e58 100644 --- a/tensorflow/python/keras/layers/wrappers.py +++ b/tensorflow/python/keras/layers/wrappers.py @@ -93,8 +93,8 @@ class TimeDistributed(Wrapper): with `channels_last` data format, across 10 timesteps. The batch input shape is `(32, 10, 128, 128, 3)`. - You can then use `TimeDistributed` to apply the same `Conv2D` layer to each of the - 10 timesteps, independently: + You can then use `TimeDistributed` to apply the same `Conv2D` layer to each + of the 10 timesteps, independently: >>> inputs = tf.keras.Input(shape=(10, 128, 128, 3)) >>> conv_2d_layer = tf.keras.layers.Conv2D(64, (3, 3))