🎨 Auto format

This commit is contained in:
pre-commit-ci-lite[bot] 2026-01-08 11:30:55 +00:00 committed by GitHub
parent 1a4cdb35eb
commit 1de6fc107e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -37,7 +37,9 @@ def test_query_params_str_validations_no_query(client: TestClient):
@pytest.mark.parametrize("q_value", ["None", "null", ""])
def test_query_params_str_validations_send_explicit_none(client: TestClient, q_value: str):
def test_query_params_str_validations_send_explicit_none(
client: TestClient, q_value: str
):
response = client.get("/items/", params={"q": q_value})
assert response.status_code == 200
assert response.json() == {