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: if subnets:
# create new subnet entries # create new subnet entries
for _, swidth, sexclude, snet, fport, lport in sorted(subnets, for _, swidth, sexclude, snet, fport, lport \
key=lambda s: s[1], in sorted(subnets, key=lambda s: s[1], reverse=True):
reverse=True):
if sexclude: if sexclude:
ipfw('table', '125', 'add', '%s/%s' % (snet, swidth)) ipfw('table', '125', 'add', '%s/%s' % (snet, swidth))
else: else: