style(email): fix import order via ruff

This commit is contained in:
Flávio Veloso Soares 2026-06-08 15:44:13 -07:00 committed by Xubin Ren
parent b96ed1b7c6
commit 1d683f0f18

View File

@ -8,6 +8,7 @@ import re
import smtplib
import ssl
from contextlib import suppress
from dataclasses import dataclass
from datetime import date
from email import policy
from email.header import decode_header, make_header
@ -16,7 +17,6 @@ from email.parser import BytesParser
from email.utils import parseaddr
from fnmatch import fnmatch
from pathlib import Path
from dataclasses import dataclass
from typing import Any, Literal
from loguru import logger