summaryrefslogtreecommitdiffstats
path: root/sshuttle/methods
diff options
context:
space:
mode:
authorJohnHay <john@sanren.ac.za>2021-12-22 06:04:25 +0200
committerJohnHay <john@sanren.ac.za>2021-12-22 06:04:25 +0200
commit922d827948d73572feeed054c9c2b23470910a07 (patch)
tree9b10518775a50cbed81cbd8717c4b34bf8a16374 /sshuttle/methods
parente6f076e1a5d1d4d452ea44eeabfaee8ff528b8ad (diff)
Flake8 does not like if we go over 79 characters on a line.
Diffstat (limited to 'sshuttle/methods')
-rw-r--r--sshuttle/methods/ipfw.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/sshuttle/methods/ipfw.py b/sshuttle/methods/ipfw.py
index 090b2ed..1a31e02 100644
--- a/sshuttle/methods/ipfw.py
+++ b/sshuttle/methods/ipfw.py
@@ -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: