test: drop redundant quotes on MonkeyPatch annotation
Some checks are pending
CI / test (push) Waiting to run
CI / build (push) Blocked by required conditions
CI / deploy (push) Blocked by required conditions
ci/woodpecker/push/build Pipeline was successful

`from __future__ import annotations` makes the quoting unnecessary and
ruff UP037 flags it.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Viktor Barzin 2026-05-26 21:20:12 +00:00
parent fe35c8e826
commit e6ef1fce97

View file

@ -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."""