Skip to content

Commit 516c22c

Browse files
committed
yapf
1 parent 6715234 commit 516c22c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tensorlayer/layers/normalization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ def build(self, inputs_shape):
287287
def forward(self, inputs):
288288
self._check_input_shape(inputs)
289289

290-
self.channel_axis = len(inputs.shape)-1 if self.data_format == 'channels_last' else 1
290+
self.channel_axis = len(inputs.shape) - 1 if self.data_format == 'channels_last' else 1
291291
if self.axes is None:
292292
self.axes = [i for i in range(len(inputs.shape)) if i != self.channel_axis]
293293

0 commit comments

Comments
 (0)