style: auto-fix ruff lint and format

This commit is contained in:
github-actions[bot]
2026-02-28 15:40:51 +00:00
parent edf9e94829
commit 58256e42ee

View File

@@ -112,7 +112,9 @@ def narrow_permissions_to_services(
permissions: dict[str, str], services: list[str]
) -> dict[str, str]:
"""Restrict permission entries to the provided service list order."""
return {service: permissions[service] for service in services if service in permissions}
return {
service: permissions[service] for service in services if service in permissions
}
def main():