Skip to content

Commit de8094f

Browse files
committed
Cosmetic fixes
1 parent acdf7cb commit de8094f

File tree

1 file changed

+5
-4
lines changed
  • python/paddle/fluid/layers

1 file changed

+5
-4
lines changed

python/paddle/fluid/layers/nn.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,11 @@ def fc(input,
178178
inputs={"Input": input,
179179
"W": w},
180180
outputs={"Out": tmp},
181-
attrs={"use_mkldnn": use_mkldnn,
182-
"is_test": is_test,
183-
"bias_attr": bias_attr
184-
})
181+
attrs={
182+
"use_mkldnn": use_mkldnn,
183+
"is_test": is_test,
184+
"bias_attr": bias_attr
185+
})
185186
return helper.append_activation(tmp)
186187
else:
187188
for input_var, param_attr in helper.iter_inputs_and_params():

0 commit comments

Comments
 (0)