mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-04-08 12:13:36 +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."""
|
||||
|
||||
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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user