resolve black formatting

This commit is contained in:
Shaun Voigt 2020-04-06 18:03:27 +09:30
parent 953bd80e2e
commit ba18853509

View file

@ -168,10 +168,10 @@ class LinuxNetClient:
) )
else: else:
self.run(f"{IP_BIN} address add {address} dev {device}") self.run(f"{IP_BIN} address add {address} dev {device}")
if ':' in address: if ":" in address:
# IPv6 addresses are removed by default on interface down. # IPv6 addresses are removed by default on interface down.
# Make sure that the IPv6 address we add is not removed # Make sure that the IPv6 address we add is not removed
self.run(f"{SYSCTL_BIN} -w net.ipv6.conf.{device}.keep_addr_on_down=1") self.run(f"{SYSCTL_BIN} -w net.ipv6.conf.{device}.keep_addr_on_down=1")
def delete_address(self, device: str, address: str) -> None: def delete_address(self, device: str, address: str) -> None:
""" """