Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/forge_loop/dashboard/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def build_handler() -> type[BaseHTTPRequestHandler]:


def _today_iso() -> str:
return datetime.now(UTC).date().isoformat()
return datetime.now().date().isoformat()


def _read_events(events_path: Path, limit: int | None = None) -> list[dict[str, Any]]:
Expand Down Expand Up @@ -445,6 +445,7 @@ def serve(
if token is None:
try:
from forge_loop.settings import Settings

token = Settings.load().dashboard.token or None
except Exception: # noqa: BLE001 — dashboard must not crash on cfg errors
token = None
Expand Down
Loading