From e241b14c2a3f41dad1bf792ff4e511a6020073b2 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Mon, 17 Nov 2025 15:00:44 +0100 Subject: [PATCH] test/infamy: pep-8, minor whitespace Signed-off-by: Joachim Wiberg --- test/infamy/netns.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/infamy/netns.py b/test/infamy/netns.py index 317e006d..870c0105 100644 --- a/test/infamy/netns.py +++ b/test/infamy/netns.py @@ -301,10 +301,11 @@ class IsolatedMacVlan(IsolatedMacVlans): """ def __init__(self, parent, ifname="iface", lo=True, set_up=True): self._ifname = ifname - return super().__init__(ifmap={ parent: ifname }, lo=lo, set_up=set_up) + return super().__init__(ifmap={parent: ifname}, lo=lo, set_up=set_up) def addip(self, addr, prefix_length=24, proto="ipv4"): - return super().addip(ifname=self._ifname, addr=addr, prefix_length=prefix_length, proto=proto) + return super().addip(ifname=self._ifname, addr=addr, + prefix_length=prefix_length, proto=proto) def must_receive(self, expr, timeout=None, ifname=None, must=True): ifname = ifname if ifname else self._ifname