From 1a5368571f782915efc5e7e130d1b1ea9e76718e Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 3 Jul 2026 10:46:24 +0000 Subject: [PATCH] add typehint --- etl/hubspot/hubspot_deal_differ.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etl/hubspot/hubspot_deal_differ.py b/etl/hubspot/hubspot_deal_differ.py index de9680e65..1a3dfc409 100644 --- a/etl/hubspot/hubspot_deal_differ.py +++ b/etl/hubspot/hubspot_deal_differ.py @@ -259,7 +259,7 @@ class HubspotDealDiffer: def _is_abandoned( number_of_attempts: Optional[str], outcome: Optional[str] ) -> bool: - attempts = parse_hs_int(number_of_attempts) + attempts: Optional[int] = parse_hs_int(number_of_attempts) if ( attempts is None or attempts < HubspotDealDiffer.ABANDONMENT_ATTEMPTS_THRESHOLD