You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/lossless_hermes/db/connection.py:~918 carries a # ty: ignore[invalid-argument-type] suppression that ty now reports as unused (the diagnostic it suppressed no longer fires). Flagged independently by 4+ v0.2.0 executor agents. CI's ty check passes (the unused-suppression is warning-level, ty exits 0), so it's not breaking anything — just persistent noise that every agent touching nearby code re-flags.
Fix: remove the stale # ty: ignore[...] directive (one line). Verify ty check src scripts stays clean.
Target: v0.2.0 chore (or fold into any nearby PR).
src/lossless_hermes/db/connection.py:~918carries a# ty: ignore[invalid-argument-type]suppression thattynow reports as unused (the diagnostic it suppressed no longer fires). Flagged independently by 4+ v0.2.0 executor agents. CI'sty checkpasses (the unused-suppression is warning-level,tyexits 0), so it's not breaking anything — just persistent noise that every agent touching nearby code re-flags.Fix: remove the stale
# ty: ignore[...]directive (one line). Verifyty check src scriptsstays clean.Target: v0.2.0 chore (or fold into any nearby PR).