global: pep8 (E222)

This commit is contained in:
Florent Kermarrec 2015-04-13 20:55:21 +02:00
parent 69764f2e22
commit 728c15213f
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ def _format_lpf(signame, pin, others, resname):
fmt_c = [_format_constraint(c) for c in ([Pins(pin)] + others)] fmt_c = [_format_constraint(c) for c in ([Pins(pin)] + others)]
r = "" r = ""
for pre, suf in fmt_c: for pre, suf in fmt_c:
r += pre + "\""+ signame +"\"" + suf + ";\n" r += pre + "\"" + signame + "\"" + suf + ";\n"
return r return r