From c13bbf9190e211f484f4c98d63186f5195489aa1 Mon Sep 17 00:00:00 2001 From: Tyler Date: Fri, 19 Jun 2026 22:04:30 -0600 Subject: [PATCH] =?UTF-8?q?docs(backend):=20reconcile=20Protocol=20?= =?UTF-8?q?=E2=80=94=20patient=5Fcontrol=5Fnumber=20is=20Optional[str]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/cyclone/reconcile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/cyclone/reconcile.py b/backend/src/cyclone/reconcile.py index e175eca..1989a29 100644 --- a/backend/src/cyclone/reconcile.py +++ b/backend/src/cyclone/reconcile.py @@ -27,7 +27,7 @@ WINDOW_DAYS_DEFAULT = 7 class _ClaimLike(Protocol): id: str - patient_control_number: str + patient_control_number: Optional[str] # truthy-filtered in match() service_date_from: Optional[date] matched_remittance_id: Optional[str]