Skip to main content

max / makenotwork

Format the two files the exorcise sweep left unformatted The sweep's rewrites left invites.rs and synckit_billing.rs failing rustfmt, so 8703cfdb and 562950d4 went in with --no-verify and the pre-commit gate has been red for everyone since. Pure `cargo fmt` output, no semantic change.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-07-27 21:23 UTC
Signed with PGP, not checked
Commit: 2f8094912dfa1b998c987f870a84563156909223
Parent: d58e7d8
2 files changed, +2 insertions, -8 deletions
@@ -147,10 +147,7 @@
147 147 net >= 0.0,
148 148 "floor must net ≥ 0 after Stripe fees, got {net}"
149 149 );
150 - assert!(
151 - net < 1.0,
152 - "floor should be tight, not overshoot, got {net}"
153 - );
150 + assert!(net < 1.0, "floor should be tight, not overshoot, got {net}");
154 151 }
155 152
156 153 #[test]
@@ -55,8 +55,5 @@
55 55 let formatted = db::invites::format_invite_code(&code);
56 56 let link = format!("makenot.work/join?invite={formatted}");
57 57
58 - Ok(
59 - AlertTemplate::new("success", &format!("Invite code: {formatted} {link}"))
60 - .into_response(),
61 - )
58 + Ok(AlertTemplate::new("success", &format!("Invite code: {formatted} {link}")).into_response())
62 59 }