mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-06-12 13:54:07 +00:00
style: fix stdlib import ordering in email.py
Made-with: Cursor
This commit is contained in:
parent
0c4b1a4a0e
commit
b98a0aabfc
@ -1,7 +1,6 @@
|
|||||||
"""Email channel implementation using IMAP polling + SMTP replies."""
|
"""Email channel implementation using IMAP polling + SMTP replies."""
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
from fnmatch import fnmatch
|
|
||||||
import html
|
import html
|
||||||
import imaplib
|
import imaplib
|
||||||
import re
|
import re
|
||||||
@ -13,9 +12,9 @@ from email.header import decode_header, make_header
|
|||||||
from email.message import EmailMessage
|
from email.message import EmailMessage
|
||||||
from email.parser import BytesParser
|
from email.parser import BytesParser
|
||||||
from email.utils import parseaddr
|
from email.utils import parseaddr
|
||||||
from typing import Any
|
from fnmatch import fnmatch
|
||||||
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
from loguru import logger
|
from loguru import logger
|
||||||
from pydantic import Field
|
from pydantic import Field
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user