"""Synthetic GUI module for the v2 audit integration tests.""" from __future__ import annotations from typing import Any FileItems = list[dict[str, Any]] def render_file_list(items: FileItems) -> None: for item in items: path = item["path"] print(path)