ruff: apply automatic fixes

This commit is contained in:
Jörg Thalheim
2025-08-20 13:52:45 +02:00
parent 798d445f3e
commit ea2d6aab65
217 changed files with 2283 additions and 1739 deletions

View File

@@ -37,7 +37,7 @@ def compute_zerotier_ip(network_id: str, identity: str) -> ipaddress.IPv6Address
(node_id >> 16) & 0xFF,
(node_id >> 8) & 0xFF,
(node_id) & 0xFF,
]
],
)
return ipaddress.IPv6Address(bytes(addr_parts))
@@ -119,7 +119,9 @@ def main() -> None:
parser_list = subparser.add_parser("list", help="List members")
parser_list.add_argument(
"--no-headers", action="store_true", help="Do not print headers"
"--no-headers",
action="store_true",
help="Do not print headers",
)
parser_list.set_defaults(func=list_members)