From e6ef1fce978b96bac8f87aab2a0fa0888b4b5bdc Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Tue, 26 May 2026 21:20:12 +0000 Subject: [PATCH] test: drop redundant quotes on MonkeyPatch annotation `from __future__ import annotations` makes the quoting unnecessary and ruff UP037 flags it. Co-Authored-By: Claude Opus 4.7 --- tests/providers/test_imap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/providers/test_imap.py b/tests/providers/test_imap.py index fcb4a0f..0264b37 100644 --- a/tests/providers/test_imap.py +++ b/tests/providers/test_imap.py @@ -105,7 +105,7 @@ def test_non_ie_activities_passed_through_unchanged() -> None: assert routed[0].account_type is AccountType.GIA -def test_exclude_invest_engine_skips_ie_emails(monkeypatch: "MonkeyPatch") -> None: +def test_exclude_invest_engine_skips_ie_emails(monkeypatch: MonkeyPatch) -> None: """BROKER_SYNC_IMAP_EXCLUDE_PROVIDERS=invest-engine should skip IE messages so we don't duplicate IE buys already ingested via the bearer-token API path. Schwab routing must remain unaffected."""