Fix PEP 8 issues.

This commit is contained in:
Matt Clay 2017-04-04 12:22:47 -07:00
commit a6ca849643
2 changed files with 2 additions and 2 deletions

View file

@ -291,8 +291,7 @@ def ports_expand(ports):
if not isinstance(port, str):
ports_expanded.append((port,) * 2)
elif '-' in port:
ports_expanded.append(tuple(p.strip() for p in
port.split('-', 1)))
ports_expanded.append(tuple(p.strip() for p in port.split('-', 1)))
else:
ports_expanded.append((port.strip(),) * 2)