tests: alphabetize and group Python imports & add check

- De-duplicates, groups, and sorts imports based on the provided `isort` settings.
This commit is contained in:
Dan Fandrich 2026-04-03 11:52:44 -07:00
parent 4c1b6f5494
commit 98e470b3a8
44 changed files with 110 additions and 134 deletions

View file

@ -33,14 +33,13 @@ import subprocess
import tempfile
from configparser import ConfigParser, ExtendedInterpolation
from datetime import timedelta
from typing import Optional, Dict, List
from typing import Dict, List, Optional
import pytest
from filelock import FileLock
from .certs import CertificateSpec, Credentials, TestCA
log = logging.getLogger(__name__)