Skip to content

Commit b81f646

Browse files
committed
fix indentation error
1 parent 7d26dd8 commit b81f646

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

python/paddle/fluid/layers/tensor.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,11 @@ def sums(input, out=None):
230230
helper = LayerHelper('sum', **locals())
231231
if out is None:
232232
out = helper.create_tmp_variable(dtype=helper.input_dtype())
233-
helper.append_op(
234-
type='sum',
235-
inputs={'X': input},
236-
outputs={'Out': out},
237-
attrs={'use_mkldnn': False})
233+
helper.append_op(
234+
type='sum',
235+
inputs={'X': input},
236+
outputs={'Out': out},
237+
attrs={'use_mkldnn': False})
238238
return out
239239

240240

0 commit comments

Comments
 (0)