From b8d26ac8799749eba0f7599ef30c0a81dd6c9bcb Mon Sep 17 00:00:00 2001 From: Break27 Date: Fri, 14 Aug 2026 16:37:30 +0800 Subject: [PATCH] fix: exclude invalid address in counts --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 05cb3f1..e0f8850 100644 --- a/main.py +++ b/main.py @@ -394,7 +394,7 @@ def main(driver: Chrome, logger = logging.getLogger('main')): if (target := cell(index, column.email).value) is None or not (email := str(target).strip()): logger.warning("[%d/%d] Not an email address; skipping", index-1, limit-1) - raise Skip() + raise Next() if attempts > parameters['attempts']: cell(index, column.sent).value = '❌'