fix: resolve CI formatting issues in tests/conftest.py
Some checks failed
CI / test (push) Failing after 12s
CI / lint (push) Failing after 5s
CI / type-check (push) Failing after 10s

- Remove unused typing imports (Dict, Any, List)
- Fix trailing whitespace on import lines
- Fix blank lines containing whitespace
- Sort import block correctly
This commit is contained in:
2026-02-04 13:55:31 +00:00
parent 489dcc863b
commit 6cfff16956

View File

@@ -1,20 +1,13 @@
"""Test configuration and fixtures."""
import json import json
import os import os
import tempfile import tempfile
from typing import Dict, Any, List
import pytest import pytest
from api_snapshot.recorder.recorder import ( from api_snapshot.recorder.recorder import RecordedRequest, RecordedResponse, RequestResponsePair
RecordedRequest, from api_snapshot.snapshot.manager import Snapshot, SnapshotManager, SnapshotMetadata
RecordedResponse,
RequestResponsePair
)
from api_snapshot.snapshot.manager import (
Snapshot,
SnapshotMetadata,
SnapshotManager
)
@pytest.fixture @pytest.fixture