Flake8 does not like if we go over 79 characters on a line.

This commit is contained in:
JohnHay 2021-12-22 06:04:25 +02:00
parent e6f076e1a5
commit 922d827948

View File

@ -200,9 +200,8 @@ class Method(BaseMethod):
if subnets:
# create new subnet entries
for _, swidth, sexclude, snet, fport, lport in sorted(subnets,
key=lambda s: s[1],
reverse=True):
for _, swidth, sexclude, snet, fport, lport \
in sorted(subnets, key=lambda s: s[1], reverse=True):
if sexclude:
ipfw('table', '125', 'add', '%s/%s' % (snet, swidth))
else: