style: fix stdlib import ordering in email.py

Made-with: Cursor
This commit is contained in:
Xubin Ren 2026-04-06 06:45:40 +00:00 committed by Xubin Ren
parent 0c4b1a4a0e
commit b98a0aabfc

View File

@ -1,7 +1,6 @@
"""Email channel implementation using IMAP polling + SMTP replies."""
import asyncio
from fnmatch import fnmatch
import html
import imaplib
import re
@ -13,9 +12,9 @@ from email.header import decode_header, make_header
from email.message import EmailMessage
from email.parser import BytesParser
from email.utils import parseaddr
from typing import Any
from fnmatch import fnmatch
from pathlib import Path
from typing import Any
from loguru import logger
from pydantic import Field