Skip to content
Open
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
4 changes: 2 additions & 2 deletions skills/last30days/scripts/last30days.py
Original file line number Diff line number Diff line change
Expand Up @@ -720,8 +720,8 @@ def _write_last_run(
],
}
(target / "last-report.json").write_text(json.dumps(cache_payload, indent=2))
except Exception:
pass
except Exception as exc:
sys.stderr.write(f"[last30days] Failed to write run cache: {exc}\n")


def _load_last_report_cache(
Expand Down
Loading