style: apply ruff formatting sweep

Co-authored-by: Copilot App <[email protected]>
This commit is contained in:
Jim Lancaster
2026-08-23 18:13:38 -05:00
co-authored by Copilot App
parent 4aaa9bd581
commit 2a56365847
37 changed files with 141 additions and 230 deletions
+1 -2
View File
@@ -56,8 +56,7 @@ def app_client(tmp_path_factory: pytest.TempPathFactory) -> Generator[tuple[Fast
expected_path = Path(database.path).resolve()
if runtime_path != expected_path:
raise RuntimeError(
"Refusing to initialize destructive UI fixtures against "
f"{runtime_path}; expected {expected_path}"
f"Refusing to initialize destructive UI fixtures against {runtime_path}; expected {expected_path}"
)
yield app, client
+2 -6
View File
@@ -30,12 +30,8 @@ def test_person_selector_label_disambiguates_without_changing_identity():
def test_family_search_url_uses_fixed_person_details_route():
assert family_search_url("G8T4-MDQ") == (
"https://www.familysearch.org/tree/person/details/G8T4-MDQ"
)
assert family_search_url("G8T4-MDQ") == ("https://www.familysearch.org/tree/person/details/G8T4-MDQ")
def test_google_maps_search_url_encodes_place_query():
assert google_maps_search_url("New York, NY") == (
"https://www.google.com/maps/search/?api=1&query=New+York%2C+NY"
)
assert google_maps_search_url("New York, NY") == ("https://www.google.com/maps/search/?api=1&query=New+York%2C+NY")
+1 -3
View File
@@ -184,9 +184,7 @@ class TestJobsPageRendering:
assert "Delete is blocked while the job is processing." in response.text
@pytest.mark.asyncio
async def test_job_delete_page_allows_deletion_for_queued_job(
self, app_client, seed_document_with_unlinked_job
):
async def test_job_delete_page_allows_deletion_for_queued_job(self, app_client, seed_document_with_unlinked_job):
_, client = app_client
_, job_id = seed_document_with_unlinked_job
+1 -1
View File
@@ -31,7 +31,7 @@ class TestPageRendering:
assert response.status_code == 200
assert "Home" in response.text
assert "Edit Home Page" in response.text
assert '/homepage' in response.text
assert "/homepage" in response.text
def test_homepage_edit_page_renders(self, app_client):
"""GET /ui/homepage/edit renders the edit page."""