chore: ruff format updates

This commit is contained in:
Matthias
2025-01-13 18:04:48 +01:00
parent 01ce4e42c6
commit f1c5d4a970
36 changed files with 66 additions and 85 deletions

View File

@@ -284,7 +284,7 @@ def test_api_token_login(botclient):
rc = client.get(
f"{BASE_URI}/count",
headers={
"Authorization": f'Bearer {rc.json()["access_token"]}',
"Authorization": f"Bearer {rc.json()['access_token']}",
"Origin": "http://example.com",
},
)
@@ -299,7 +299,7 @@ def test_api_token_refresh(botclient):
f"{BASE_URI}/token/refresh",
data=None,
headers={
"Authorization": f'Bearer {rc.json()["refresh_token"]}',
"Authorization": f"Bearer {rc.json()['refresh_token']}",
"Origin": "http://example.com",
},
)