refactor: improve code formatting and organization across multiple files

This commit is contained in:
2025-10-11 17:40:56 +02:00
parent 47bbd7ab0c
commit 834150518a
23 changed files with 317 additions and 126 deletions

View File

@@ -20,9 +20,7 @@ def test_network_snapshot_requires_authentication() -> None:
def test_network_snapshot_endpoint_returns_collections() -> None:
token = _authenticate()
response = client.get(
"/api/network", headers={"Authorization": f"Bearer {token}"}
)
response = client.get("/api/network", headers={"Authorization": f"Bearer {token}"})
assert response.status_code == 200
payload = response.json()